ERC-20
Overview
Max Total Supply
333 🐦
Holders
99
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
88.681407094089280882 🐦Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Karasu
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-05 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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 {AccessControl-_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) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @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) external; /** * @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) external; /** * @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) external; } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`. // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`. // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a // good first aproximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1; uint256 x = a; if (x >> 128 > 0) { x >>= 128; result <<= 64; } if (x >> 64 > 0) { x >>= 64; result <<= 32; } if (x >> 32 > 0) { x >>= 32; result <<= 16; } if (x >> 16 > 0) { x >>= 16; result <<= 8; } if (x >> 8 > 0) { x >>= 8; result <<= 4; } if (x >> 4 > 0) { x >>= 4; result <<= 2; } if (x >> 2 > 0) { result <<= 1; } // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { uint256 result = sqrt(a); if (rounding == Rounding.Up && result * result < a) { result += 1; } return result; } } // File: @openzeppelin/contracts/utils/Arrays.sol // OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @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 virtual override 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. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _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. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _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 revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { 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. * * May emit a {RoleGranted} event. * * [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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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 { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/extensions/ERC20Snapshot.sol) pragma solidity ^0.8.0; /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it * return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract. * * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient * alternative consider {ERC20Votes}. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } /** * @dev Get the current snapshotId */ function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } } // File: Karasu.sol pragma solidity ^0.8.4; contract Karasu is ERC20, ERC20Snapshot, AccessControl { bytes32 public constant SNAPSHOT_ROLE = keccak256("SNAPSHOT_ROLE"); address mainAddress = 0x5340303D3d990FDF1DDc8e4472811E2B2863fa3B; constructor() ERC20("Karasu", unicode"🐦") { _grantRole(DEFAULT_ADMIN_ROLE, mainAddress); _grantRole(SNAPSHOT_ROLE, msg.sender); _mint(msg.sender, 333 * 10 ** decimals()); } function snapshot() public onlyRole(SNAPSHOT_ROLE) { _snapshot(); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address from, address to, uint256 amount) internal override(ERC20, ERC20Snapshot) { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SNAPSHOT_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"snapshot","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a8054600160a060020a031916735340303d3d990fdf1ddc8e4472811e2b2863fa3b1790553480156200003757600080fd5b506040518060400160405280600681526020017f4b617261737500000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017ff09f90a6000000000000000000000000000000000000000000000000000000008152508160039081620000b591906200064a565b506004620000c482826200064a565b5050600a54620000ea9150600090600160a060020a031664010000000062000167810204565b6200011f7f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f3364010000000062000167810204565b62000161336200013764010000000062000206810204565b6200014490600a6200084c565b620001529061014d62000864565b6401000000006200020b810204565b620008ea565b6200017c828264010000000062000337810204565b62000202576000828152600960209081526040808320600160a060020a03851684529091529020805460ff19166001179055620001c164010000000062000364810204565b600160a060020a031681600160a060020a0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b601290565b600160a060020a03821662000280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b620002976000838364010000000062000368810204565b8060026000828254620002ab919062000886565b9091555050600160a060020a03821660009081526020819052604081208054839290620002da90849062000886565b9091555050604051818152600160a060020a038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3620002026000838364010000000062000383810204565b6000828152600960209081526040808320600160a060020a038516845290915290205460ff165b92915050565b3390565b62000383838383640100000000620007586200038882021704565b505050565b620003a3838383640100000000620004b96200038382021704565b600160a060020a038316620003d957620003c68264010000000062000424810204565b6200038364010000000062000467810204565b600160a060020a038216620003fc57620003c68364010000000062000424810204565b620004108364010000000062000424810204565b620003838264010000000062000424810204565b600160a060020a03811660009081526005602052604090206200046490620004558364010000000062000482810204565b6401000000006200049d810204565b50565b62000480600662000455640100000000620004fe810204565b565b600160a060020a031660009081526020819052604090205490565b6000620004b264010000000062000504810204565b905080620004c98464010000000062000525810204565b101562000383578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b60025490565b6000620005206008640100000000620007a06200057082021704565b905090565b805460009081036200053957506000919050565b815482906200054b90600190620008a1565b815481106200055e576200055e620008bb565b90600052602060002001549050919050565b5490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600281046001821680620005b857607f821691505b602082108103620005f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f82111562000383576000818152602081206020601f86010481016020861015620006215750805b6020601f860104820191505b8181101562000642578281556001016200062d565b505050505050565b815167ffffffffffffffff81111562000667576200066762000574565b6200067f81620006788454620005a3565b84620005f8565b602080601f831160018114620006bb57600084156200069e5750858301515b60028086026008870290910a600019041982161786555062000642565b600085815260208120601f198616915b82811015620006ec57888601518255948401946001909101908401620006cb565b50858210156200070d57878501516008601f88160260020a60001904191681555b5050505050600202600101905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600181815b808511156200078f5781600019048211156200077157620007716200071d565b808516156200077f57918102915b6002909404939080029062000751565b509250929050565b600082620007a8575060016200035e565b81620007b7575060006200035e565b8160018114620007d05760028114620007db57620007fc565b60019150506200035e565b60ff841115620007ef57620007ef6200071d565b8360020a9150506200035e565b5060208310610133831016604e8410600b841016171562000821575081810a6200035e565b6200082d83836200074c565b80600019048211156200084457620008446200071d565b029392505050565b60006200085d60ff84168362000797565b9392505050565b60008160001904831182151516156200088157620008816200071d565b500290565b600082198211156200089c576200089c6200071d565b500190565b600082821015620008b657620008b66200071d565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6115f880620008fa6000396000f3fe608060405234801561001057600080fd5b506004361061015f576000357c0100000000000000000000000000000000000000000000000000000000900480637028e2cd116100d5578063981b24d011610099578063981b24d0146102cc578063a217fddf146102df578063a457c2d7146102e7578063a9059cbb146102fa578063d547741f1461030d578063dd62ed3e1461032057600080fd5b80637028e2cd1461025957806370a082311461028057806391d14854146102a957806395d89b41146102bc5780639711715a146102c457600080fd5b8063248a9ca311610127578063248a9ca3146101d95780632f2ff15d146101fc578063313ce5671461021157806336568abe1461022057806339509351146102335780634ee2cd7e1461024657600080fd5b806301ffc9a71461016457806306fdde031461018c578063095ea7b3146101a157806318160ddd146101b457806323b872dd146101c6575b600080fd5b61017761017236600461128a565b610333565b60405190151581526020015b60405180910390f35b6101946103c6565b60405161018391906112f5565b6101776101af36600461133f565b610458565b6002545b604051908152602001610183565b6101776101d4366004611369565b610470565b6101b86101e73660046113a5565b60009081526009602052604090206001015490565b61020f61020a3660046113be565b610494565b005b60405160128152602001610183565b61020f61022e3660046113be565b6104be565b61017761024136600461133f565b610552565b6101b861025436600461133f565b610574565b6101b87f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f81565b6101b861028e3660046113ea565b600160a060020a031660009081526020819052604090205490565b6101776102b73660046113be565b6105cd565b6101946105f8565b61020f610607565b6101b86102da3660046113a5565b610639565b6101b8600081565b6101776102f536600461133f565b610664565b61017761030836600461133f565b6106fa565b61020f61031b3660046113be565b610708565b6101b861032e366004611405565b61072d565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1982167f7965db0b0000000000000000000000000000000000000000000000000000000014806103c057507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff198316145b92915050565b6060600380546103d59061142f565b80601f01602080910402602001604051908101604052809291908181526020018280546104019061142f565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b6000336104668185856107a4565b5060019392505050565b60003361047e858285610902565b61048985858561097f565b506001949350505050565b6000828152600960205260409020600101546104af81610baa565b6104b98383610bb7565b505050565b600160a060020a03811633146105445760405160e560020a62461bcd02815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b61054e8282610c3d565b5050565b600033610466818585610565838361072d565b61056f9190611485565b6107a4565b600160a060020a03821660009081526005602052604081208190819061059b908590610ca4565b91509150816105c257600160a060020a0385166000908152602081905260409020546105c4565b805b95945050505050565b6000918252600960209081526040808420600160a060020a0393909316845291905290205460ff1690565b6060600480546103d59061142f565b7f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f61063181610baa565b61054e610da7565b6000806000610649846006610ca4565b915091508161065a5760025461065c565b805b949350505050565b60003381610672828661072d565b9050838110156106ed5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161053b565b61048982868684036107a4565b60003361046681858561097f565b60008281526009602052604090206001015461072381610baa565b6104b98383610c3d565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0383166107775761076f82610e01565b6104b9610e33565b600160a060020a03821661078e5761076f83610e01565b61079783610e01565b6104b982610e01565b5490565b600160a060020a0383166108225760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161053b565b600160a060020a0382166108a15760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161053b565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061090e848461072d565b90506000198114610979578181101561096c5760405160e560020a62461bcd02815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161053b565b61097984848484036107a4565b50505050565b600160a060020a0383166109fe5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161053b565b600160a060020a038216610a7d5760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161053b565b610a88838383610e43565b600160a060020a03831660009081526020819052604090205481811015610b1a5760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161053b565b600160a060020a03808516600090815260208190526040808220858503905591851681529081208054849290610b51908490611485565b9250508190555082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d91815260200190565b60405180910390a3610979565b610bb48133610e4e565b50565b610bc182826105cd565b61054e576000828152600960209081526040808320600160a060020a03851684529091529020805460ff19166001179055610bf93390565b600160a060020a031681600160a060020a0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610c4782826105cd565b1561054e576000828152600960209081526040808320600160a060020a0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008060008411610cfa5760405160e560020a62461bcd02815260206004820152601660248201527f4552433230536e617073686f743a206964206973203000000000000000000000604482015260640161053b565b610d02610eb5565b841115610d545760405160e560020a62461bcd02815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000604482015260640161053b565b6000610d608486610ec5565b84549091508103610d78576000809250925050610da0565b6001846001018281548110610d8f57610d8f61149d565b906000526020600020015492509250505b9250929050565b6000610db7600880546001019055565b6000610dc1610eb5565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051610df491815260200190565b60405180910390a1919050565b600160a060020a03811660009081526005602090815260408083209183905290912054610bb49190610f8a565b610f8a565b610e416006610e2e60025490565b565b6104b9838383610758565b610e5882826105cd565b61054e57610e7081600160a060020a03166014610fd4565b610e7b836020610fd4565b604051602001610e8c9291906114b6565b60408051601f198184030181529082905260e560020a62461bcd02825261053b916004016112f5565b6000610ec060085490565b905090565b81546000908103610ed8575060006103c0565b82546000905b80821015610f34576000610ef28383611225565b905084868281548110610f0757610f0761149d565b90600052602060002001541115610f2057809150610f2e565b610f2b816001611485565b92505b50610ede565b600082118015610f6957508385610f4c600185611537565b81548110610f5c57610f5c61149d565b9060005260206000200154145b15610f8257610f79600183611537565b925050506103c0565b5090506103c0565b6000610f94610eb5565b905080610fa084611240565b10156104b9578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b60606000610fe383600261154e565b610fee906002611485565b67ffffffffffffffff8111156110065761100661156d565b6040519080825280601f01601f191660200182016040528015611030576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106110675761106761149d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106110ca576110ca61149d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600061110684600261154e565b611111906001611485565b90505b60018111156111cc577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106111525761115261149d565b1a7f0100000000000000000000000000000000000000000000000000000000000000028282815181106111875761118761149d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506010909404936111c581611586565b9050611114565b50831561121e5760405160e560020a62461bcd02815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161053b565b9392505050565b6000611234600284841861159d565b61121e90848416611485565b8054600090810361125357506000919050565b8154829061126390600190611537565b815481106112735761127361149d565b90600052602060002001549050919050565b919050565b60006020828403121561129c57600080fd5b81357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff198116811461121e57600080fd5b60005b838110156112e45781810151838201526020016112cc565b838111156109795750506000910152565b60208152600082518060208401526113148160408501602087016112c9565b601f01601f19169190910160400192915050565b8035600160a060020a038116811461128557600080fd5b6000806040838503121561135257600080fd5b61135b83611328565b946020939093013593505050565b60008060006060848603121561137e57600080fd5b61138784611328565b925061139560208501611328565b9150604084013590509250925092565b6000602082840312156113b757600080fd5b5035919050565b600080604083850312156113d157600080fd5b823591506113e160208401611328565b90509250929050565b6000602082840312156113fc57600080fd5b61121e82611328565b6000806040838503121561141857600080fd5b61142183611328565b91506113e160208401611328565b60028104600182168061144357607f821691505b6020821081036114665760e060020a634e487b7102600052602260045260246000fd5b50919050565b60e060020a634e487b7102600052601160045260246000fd5b600082198211156114985761149861146c565b500190565b60e060020a634e487b7102600052603260045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516114ee8160178501602088016112c9565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161152b8160288401602088016112c9565b01602801949350505050565b6000828210156115495761154961146c565b500390565b60008160001904831182151516156115685761156861146c565b500290565b60e060020a634e487b7102600052604160045260246000fd5b6000816115955761159561146c565b506000190190565b6000826115bd5760e060020a634e487b7102600052601260045260246000fd5b50049056fea26469706673582212209d4d1867c53e58b8b0da107f27747926b397affb2502c41d9c39305fe168d6d064736f6c634300080f0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061015f576000357c0100000000000000000000000000000000000000000000000000000000900480637028e2cd116100d5578063981b24d011610099578063981b24d0146102cc578063a217fddf146102df578063a457c2d7146102e7578063a9059cbb146102fa578063d547741f1461030d578063dd62ed3e1461032057600080fd5b80637028e2cd1461025957806370a082311461028057806391d14854146102a957806395d89b41146102bc5780639711715a146102c457600080fd5b8063248a9ca311610127578063248a9ca3146101d95780632f2ff15d146101fc578063313ce5671461021157806336568abe1461022057806339509351146102335780634ee2cd7e1461024657600080fd5b806301ffc9a71461016457806306fdde031461018c578063095ea7b3146101a157806318160ddd146101b457806323b872dd146101c6575b600080fd5b61017761017236600461128a565b610333565b60405190151581526020015b60405180910390f35b6101946103c6565b60405161018391906112f5565b6101776101af36600461133f565b610458565b6002545b604051908152602001610183565b6101776101d4366004611369565b610470565b6101b86101e73660046113a5565b60009081526009602052604090206001015490565b61020f61020a3660046113be565b610494565b005b60405160128152602001610183565b61020f61022e3660046113be565b6104be565b61017761024136600461133f565b610552565b6101b861025436600461133f565b610574565b6101b87f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f81565b6101b861028e3660046113ea565b600160a060020a031660009081526020819052604090205490565b6101776102b73660046113be565b6105cd565b6101946105f8565b61020f610607565b6101b86102da3660046113a5565b610639565b6101b8600081565b6101776102f536600461133f565b610664565b61017761030836600461133f565b6106fa565b61020f61031b3660046113be565b610708565b6101b861032e366004611405565b61072d565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1982167f7965db0b0000000000000000000000000000000000000000000000000000000014806103c057507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff198316145b92915050565b6060600380546103d59061142f565b80601f01602080910402602001604051908101604052809291908181526020018280546104019061142f565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b6000336104668185856107a4565b5060019392505050565b60003361047e858285610902565b61048985858561097f565b506001949350505050565b6000828152600960205260409020600101546104af81610baa565b6104b98383610bb7565b505050565b600160a060020a03811633146105445760405160e560020a62461bcd02815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b61054e8282610c3d565b5050565b600033610466818585610565838361072d565b61056f9190611485565b6107a4565b600160a060020a03821660009081526005602052604081208190819061059b908590610ca4565b91509150816105c257600160a060020a0385166000908152602081905260409020546105c4565b805b95945050505050565b6000918252600960209081526040808420600160a060020a0393909316845291905290205460ff1690565b6060600480546103d59061142f565b7f5fdbd35e8da83ee755d5e62a539e5ed7f47126abede0b8b10f9ea43dc6eed07f61063181610baa565b61054e610da7565b6000806000610649846006610ca4565b915091508161065a5760025461065c565b805b949350505050565b60003381610672828661072d565b9050838110156106ed5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161053b565b61048982868684036107a4565b60003361046681858561097f565b60008281526009602052604090206001015461072381610baa565b6104b98383610c3d565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0383166107775761076f82610e01565b6104b9610e33565b600160a060020a03821661078e5761076f83610e01565b61079783610e01565b6104b982610e01565b5490565b600160a060020a0383166108225760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161053b565b600160a060020a0382166108a15760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161053b565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061090e848461072d565b90506000198114610979578181101561096c5760405160e560020a62461bcd02815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161053b565b61097984848484036107a4565b50505050565b600160a060020a0383166109fe5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161053b565b600160a060020a038216610a7d5760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161053b565b610a88838383610e43565b600160a060020a03831660009081526020819052604090205481811015610b1a5760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161053b565b600160a060020a03808516600090815260208190526040808220858503905591851681529081208054849290610b51908490611485565b9250508190555082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d91815260200190565b60405180910390a3610979565b610bb48133610e4e565b50565b610bc182826105cd565b61054e576000828152600960209081526040808320600160a060020a03851684529091529020805460ff19166001179055610bf93390565b600160a060020a031681600160a060020a0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610c4782826105cd565b1561054e576000828152600960209081526040808320600160a060020a0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008060008411610cfa5760405160e560020a62461bcd02815260206004820152601660248201527f4552433230536e617073686f743a206964206973203000000000000000000000604482015260640161053b565b610d02610eb5565b841115610d545760405160e560020a62461bcd02815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000604482015260640161053b565b6000610d608486610ec5565b84549091508103610d78576000809250925050610da0565b6001846001018281548110610d8f57610d8f61149d565b906000526020600020015492509250505b9250929050565b6000610db7600880546001019055565b6000610dc1610eb5565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051610df491815260200190565b60405180910390a1919050565b600160a060020a03811660009081526005602090815260408083209183905290912054610bb49190610f8a565b610f8a565b610e416006610e2e60025490565b565b6104b9838383610758565b610e5882826105cd565b61054e57610e7081600160a060020a03166014610fd4565b610e7b836020610fd4565b604051602001610e8c9291906114b6565b60408051601f198184030181529082905260e560020a62461bcd02825261053b916004016112f5565b6000610ec060085490565b905090565b81546000908103610ed8575060006103c0565b82546000905b80821015610f34576000610ef28383611225565b905084868281548110610f0757610f0761149d565b90600052602060002001541115610f2057809150610f2e565b610f2b816001611485565b92505b50610ede565b600082118015610f6957508385610f4c600185611537565b81548110610f5c57610f5c61149d565b9060005260206000200154145b15610f8257610f79600183611537565b925050506103c0565b5090506103c0565b6000610f94610eb5565b905080610fa084611240565b10156104b9578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b60606000610fe383600261154e565b610fee906002611485565b67ffffffffffffffff8111156110065761100661156d565b6040519080825280601f01601f191660200182016040528015611030576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106110675761106761149d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106110ca576110ca61149d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600061110684600261154e565b611111906001611485565b90505b60018111156111cc577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106111525761115261149d565b1a7f0100000000000000000000000000000000000000000000000000000000000000028282815181106111875761118761149d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506010909404936111c581611586565b9050611114565b50831561121e5760405160e560020a62461bcd02815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161053b565b9392505050565b6000611234600284841861159d565b61121e90848416611485565b8054600090810361125357506000919050565b8154829061126390600190611537565b815481106112735761127361149d565b90600052602060002001549050919050565b919050565b60006020828403121561129c57600080fd5b81357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff198116811461121e57600080fd5b60005b838110156112e45781810151838201526020016112cc565b838111156109795750506000910152565b60208152600082518060208401526113148160408501602087016112c9565b601f01601f19169190910160400192915050565b8035600160a060020a038116811461128557600080fd5b6000806040838503121561135257600080fd5b61135b83611328565b946020939093013593505050565b60008060006060848603121561137e57600080fd5b61138784611328565b925061139560208501611328565b9150604084013590509250925092565b6000602082840312156113b757600080fd5b5035919050565b600080604083850312156113d157600080fd5b823591506113e160208401611328565b90509250929050565b6000602082840312156113fc57600080fd5b61121e82611328565b6000806040838503121561141857600080fd5b61142183611328565b91506113e160208401611328565b60028104600182168061144357607f821691505b6020821081036114665760e060020a634e487b7102600052602260045260246000fd5b50919050565b60e060020a634e487b7102600052601160045260246000fd5b600082198211156114985761149861146c565b500190565b60e060020a634e487b7102600052603260045260246000fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516114ee8160178501602088016112c9565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161152b8160288401602088016112c9565b01602801949350505050565b6000828210156115495761154961146c565b500390565b60008160001904831182151516156115685761156861146c565b500290565b60e060020a634e487b7102600052604160045260246000fd5b6000816115955761159561146c565b506000190190565b6000826115bd5760e060020a634e487b7102600052601260045260246000fd5b50049056fea26469706673582212209d4d1867c53e58b8b0da107f27747926b397affb2502c41d9c39305fe168d6d064736f6c634300080f0033
Deployed Bytecode Sourcemap
54307:783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23073:204;;;;;;:::i;:::-;;:::i;:::-;;;516:14:1;;509:22;491:41;;479:2;464:18;23073:204:0;;;;;;;;34515:100;;;:::i;:::-;;;;;;;:::i;36866:201::-;;;;;;:::i;:::-;;:::i;35635:108::-;35723:12;;35635:108;;;1800:25:1;;;1788:2;1773:18;35635:108:0;1654:177:1;37647:295:0;;;;;;:::i;:::-;;:::i;24909:131::-;;;;;;:::i;:::-;24983:7;25010:12;;;:6;:12;;;;;:22;;;;24909:131;25350:147;;;;;;:::i;:::-;;:::i;:::-;;35477:93;;;35560:2;2937:36:1;;2925:2;2910:18;35477:93:0;2795:184:1;26494:218:0;;;;;;:::i;:::-;;:::i;38351:238::-;;;;;;:::i;:::-;;:::i;50354:266::-;;;;;;:::i;:::-;;:::i;54369:66::-;;54409:26;54369:66;;35806:127;;;;;;:::i;:::-;-1:-1:-1;;;;;35907:18:0;35880:7;35907:18;;;;;;;;;;;;35806:127;23369:147;;;;;;:::i;:::-;;:::i;34734:104::-;;;:::i;54730:81::-;;;:::i;50724:234::-;;;;;;:::i;:::-;;:::i;22474:49::-;;22519:4;22474:49;;39092:436;;;;;;:::i;:::-;;:::i;36139:193::-;;;;;;:::i;:::-;;:::i;25790:149::-;;;;;;:::i;:::-;;:::i;36395:151::-;;;;;;:::i;:::-;;:::i;23073:204::-;23158:4;-1:-1:-1;;23182:47:0;;23197:32;23182:47;;:87;;-1:-1:-1;1906:25:0;-1:-1:-1;;1891:40:0;;;23233:36;23175:94;23073:204;-1:-1:-1;;23073:204:0:o;34515:100::-;34569:13;34602:5;34595:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34515:100;:::o;36866:201::-;36949:4;20362:10;37005:32;20362:10;37021:7;37030:6;37005:8;:32::i;:::-;-1:-1:-1;37055:4:0;;36866:201;-1:-1:-1;;;36866:201:0:o;37647:295::-;37778:4;20362:10;37836:38;37852:4;20362:10;37867:6;37836:15;:38::i;:::-;37885:27;37895:4;37901:2;37905:6;37885:9;:27::i;:::-;-1:-1:-1;37930:4:0;;37647:295;-1:-1:-1;;;;37647:295:0:o;25350:147::-;24983:7;25010:12;;;:6;:12;;;;;:22;;;22965:16;22976:4;22965:10;:16::i;:::-;25464:25:::1;25475:4;25481:7;25464:10;:25::i;:::-;25350:147:::0;;;:::o;26494:218::-;-1:-1:-1;;;;;26590:23:0;;20362:10;26590:23;26582:83;;;;-1:-1:-1;;;;;26582:83:0;;4269:2:1;26582:83:0;;;4251:21:1;4308:2;4288:18;;;4281:30;4347:34;4327:18;;;4320:62;4418:17;4398:18;;;4391:45;4453:19;;26582:83:0;;;;;;;;;26678:26;26690:4;26696:7;26678:11;:26::i;:::-;26494:218;;:::o;38351:238::-;38439:4;20362:10;38495:64;20362:10;38511:7;38548:10;38520:25;20362:10;38511:7;38520:9;:25::i;:::-;:38;;;;:::i;:::-;38495:8;:64::i;50354:266::-;-1:-1:-1;;;;;50518:33:0;;50441:7;50518:33;;;:24;:33;;;;;50441:7;;;;50497:55;;50506:10;;50497:8;:55::i;:::-;50461:91;;;;50572:11;:40;;-1:-1:-1;;;;;35907:18:0;;35880:7;35907:18;;;;;;;;;;;50572:40;;;50586:5;50572:40;50565:47;50354:266;-1:-1:-1;;;;;50354:266:0:o;23369:147::-;23455:4;23479:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;23479:29:0;;;;;;;;;;;;;;;23369:147::o;34734:104::-;34790:13;34823:7;34816:14;;;;;:::i;54730:81::-;54409:26;22965:16;22976:4;22965:10;:16::i;:::-;54792:11:::1;:9;:11::i;50724:234::-:0;50796:7;50817:16;50835:13;50852:43;50861:10;50873:21;50852:8;:43::i;:::-;50816:79;;;;50915:11;:35;;35723:12;;50915:35;;;50929:5;50915:35;50908:42;50724:234;-1:-1:-1;;;;50724:234:0:o;39092:436::-;39185:4;20362:10;39185:4;39268:25;20362:10;39285:7;39268:9;:25::i;:::-;39241:52;;39332:15;39312:16;:35;;39304:85;;;;-1:-1:-1;;;;;39304:85:0;;5007:2:1;39304:85:0;;;4989:21:1;5046:2;5026:18;;;5019:30;5085:34;5065:18;;;5058:62;5156:7;5136:18;;;5129:35;5181:19;;39304:85:0;4805:401:1;39304:85:0;39425:60;39434:5;39441:7;39469:15;39450:16;:34;39425:8;:60::i;36139:193::-;36218:4;20362:10;36274:28;20362:10;36291:2;36295:6;36274:9;:28::i;25790:149::-;24983:7;25010:12;;;:6;:12;;;;;:22;;;22965:16;22976:4;22965:10;:16::i;:::-;25905:26:::1;25917:4;25923:7;25905:11;:26::i;36395:151::-:0;-1:-1:-1;;;;;36511:18:0;;;36484:7;36511:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;36395:151::o;51175:622::-;-1:-1:-1;;;;;51379:18:0;;51375:415;;51435:26;51458:2;51435:22;:26::i;:::-;51476:28;:26;:28::i;51375:415::-;-1:-1:-1;;;;;51526:16:0;;51522:268;;51580:28;51603:4;51580:22;:28::i;51522:268::-;51709:28;51732:4;51709:22;:28::i;:::-;51752:26;51775:2;51752:22;:26::i;8356:114::-;8448:14;;8356:114::o;42717:380::-;-1:-1:-1;;;;;42853:19:0;;42845:68;;;;-1:-1:-1;;;;;42845:68:0;;5413:2:1;42845:68:0;;;5395:21:1;5452:2;5432:18;;;5425:30;5491:34;5471:18;;;5464:62;5562:6;5542:18;;;5535:34;5586:19;;42845:68:0;5211:400:1;42845:68:0;-1:-1:-1;;;;;42932:21:0;;42924:68;;;;-1:-1:-1;;;;;42924:68:0;;5818:2:1;42924:68:0;;;5800:21:1;5857:2;5837:18;;;5830:30;5896:34;5876:18;;;5869:62;5967:4;5947:18;;;5940:32;5989:19;;42924:68:0;5616:398:1;42924:68:0;-1:-1:-1;;;;;43005:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43057:32;;1800:25:1;;;43057:32:0;;1773:18:1;43057:32:0;;;;;;;42717:380;;;:::o;43388:453::-;43523:24;43550:25;43560:5;43567:7;43550:9;:25::i;:::-;43523:52;;-1:-1:-1;;43590:16:0;:37;43586:248;;43672:6;43652:16;:26;;43644:68;;;;-1:-1:-1;;;;;43644:68:0;;6221:2:1;43644:68:0;;;6203:21:1;6260:2;6240:18;;;6233:30;6299:31;6279:18;;;6272:59;6348:18;;43644:68:0;6019:353:1;43644:68:0;43756:51;43765:5;43772:7;43800:6;43781:16;:25;43756:8;:51::i;:::-;43512:329;43388:453;;;:::o;39998:671::-;-1:-1:-1;;;;;40129:18:0;;40121:68;;;;-1:-1:-1;;;;;40121:68:0;;6579:2:1;40121:68:0;;;6561:21:1;6618:2;6598:18;;;6591:30;6657:34;6637:18;;;6630:62;6728:7;6708:18;;;6701:35;6753:19;;40121:68:0;6377:401:1;40121:68:0;-1:-1:-1;;;;;40208:16:0;;40200:64;;;;-1:-1:-1;;;;;40200:64:0;;6985:2:1;40200:64:0;;;6967:21:1;7024:2;7004:18;;;6997:30;7063:34;7043:18;;;7036:62;7134:5;7114:18;;;7107:33;7157:19;;40200:64:0;6783:399:1;40200:64:0;40277:38;40298:4;40304:2;40308:6;40277:20;:38::i;:::-;-1:-1:-1;;;;;40350:15:0;;40328:19;40350:15;;;;;;;;;;;40384:21;;;;40376:72;;;;-1:-1:-1;;;;;40376:72:0;;7389:2:1;40376:72:0;;;7371:21:1;7428:2;7408:18;;;7401:30;7467:34;7447:18;;;7440:62;7538:8;7518:18;;;7511:36;7564:19;;40376:72:0;7187:402:1;40376:72:0;-1:-1:-1;;;;;40484:15:0;;;:9;:15;;;;;;;;;;;40502:20;;;40484:38;;40544:13;;;;;;;;:23;;40516:6;;40484:9;40544:23;;40516:6;;40544:23;:::i;:::-;;;;;;;;40600:2;-1:-1:-1;;;;;40585:26:0;40594:4;-1:-1:-1;;;;;40585:26:0;;40604:6;40585:26;;;;1800:25:1;;1788:2;1773:18;;1654:177;40585:26:0;;;;;;;;40624:37;25350:147;23820:105;23887:30;23898:4;20362:10;23887;:30::i;:::-;23820:105;:::o;28091:238::-;28175:22;28183:4;28189:7;28175;:22::i;:::-;28170:152;;28214:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;28214:29:0;;;;;;;;;:36;;-1:-1:-1;;28214:36:0;28246:4;28214:36;;;28297:12;20362:10;;20282:98;28297:12;-1:-1:-1;;;;;28270:40:0;28288:7;-1:-1:-1;;;;;28270:40:0;28282:4;28270:40;;;;;;;;;;28091:238;;:::o;28509:239::-;28593:22;28601:4;28607:7;28593;:22::i;:::-;28589:152;;;28664:5;28632:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;28632:29:0;;;;;;;;;;:37;;-1:-1:-1;;28632:37:0;;;28689:40;20362:10;;28632:12;;28689:40;;28664:5;28689:40;28509:239;;:::o;51805:1619::-;51894:4;51900:7;51941:1;51928:10;:14;51920:49;;;;-1:-1:-1;;;;;51920:49:0;;7796:2:1;51920:49:0;;;7778:21:1;7835:2;7815:18;;;7808:30;7874:24;7854:18;;;7847:52;7916:18;;51920:49:0;7594:346:1;51920:49:0;52002:23;:21;:23::i;:::-;51988:10;:37;;51980:79;;;;-1:-1:-1;;;;;51980:79:0;;8147:2:1;51980:79:0;;;8129:21:1;8186:2;8166:18;;;8159:30;8225:31;8205:18;;;8198:59;8274:18;;51980:79:0;7945:353:1;51980:79:0;53198:13;53214:40;:9;53243:10;53214:28;:40::i;:::-;53280:20;;53198:56;;-1:-1:-1;53271:29:0;;53267:150;;53325:5;53332:1;53317:17;;;;;;;53267:150;53375:4;53381:9;:16;;53398:5;53381:23;;;;;;;;:::i;:::-;;;;;;;;;53367:38;;;;;51805:1619;;;;;;:::o;49826:223::-;49873:7;49893:30;:18;8567:19;;8585:1;8567:19;;;8478:127;49893:30;49936:17;49956:23;:21;:23::i;:::-;49936:43;;49995:19;50004:9;49995:19;;;;1800:25:1;;1788:2;1773:18;;1654:177;49995:19:0;;;;;;;;50032:9;49826:223;-1:-1:-1;49826:223:0:o;53432:146::-;-1:-1:-1;;;;;53516:33:0;;;;;;:24;:33;;;;;;;;35907:18;;;;;;;;53500:70;;53516:33;53500:15;:70::i;53551:18::-;53500:15;:70::i;53586:118::-;53643:53;53659:21;53682:13;35723:12;;;35635:108;53643:53;53586:118::o;54889:198::-;55035:44;55062:4;55068:2;55072:6;55035:26;:44::i;24215:505::-;24304:22;24312:4;24318:7;24304;:22::i;:::-;24299:414;;24492:41;24520:7;-1:-1:-1;;;;;24492:41:0;24530:2;24492:19;:41::i;:::-;24606:38;24634:4;24641:2;24606:19;:38::i;:::-;24397:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;24397:270:0;;;;;;;;;;-1:-1:-1;;;;;24343:358:0;;;;;;;:::i;50115:127::-;50179:7;50206:28;:18;8448:14;;8356:114;50206:28;50199:35;;50115:127;:::o;18678:918::-;18791:12;;18767:7;;18791:17;;18787:58;;-1:-1:-1;18832:1:0;18825:8;;18787:58;18898:12;;18857:11;;18923:424;18936:4;18930:3;:10;18923:424;;;18957:11;18971:23;18984:3;18989:4;18971:12;:23::i;:::-;18957:37;;19228:7;19215:5;19221:3;19215:10;;;;;;;;:::i;:::-;;;;;;;;;:20;19211:125;;;19263:3;19256:10;;19211:125;;;19313:7;:3;19319:1;19313:7;:::i;:::-;19307:13;;19211:125;18942:405;18923:424;;;19473:1;19467:3;:7;:36;;;;-1:-1:-1;19496:7:0;19478:5;19484:7;19490:1;19484:3;:7;:::i;:::-;19478:14;;;;;;;;:::i;:::-;;;;;;;;;:25;19467:36;19463:126;;;19527:7;19533:1;19527:3;:7;:::i;:::-;19520:14;;;;;;19463:126;-1:-1:-1;19574:3:0;-1:-1:-1;19567:10:0;;53712:310;53807:17;53827:23;:21;:23::i;:::-;53807:43;-1:-1:-1;53807:43:0;53865:30;53881:9;53865:15;:30::i;:::-;:42;53861:154;;;53924:29;;;;;;;;-1:-1:-1;53924:29:0;;;;;;;;;;;;;;53968:16;;;:35;;;;;;;;;;;;;;;53712:310::o;3677:451::-;3752:13;3778:19;3810:10;3814:6;3810:1;:10;:::i;:::-;:14;;3823:1;3810:14;:::i;:::-;3800:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3800:25:0;;3778:47;;3836:15;:6;3843:1;3836:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;;3862;:6;3869:1;3862:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;-1:-1:-1;3893:9:0;3905:10;3909:6;3905:1;:10;:::i;:::-;:14;;3918:1;3905:14;:::i;:::-;3893:26;;3888:135;3925:1;3921;:5;3888:135;;;3960:12;3973:5;3981:3;3973:11;3960:25;;;;;;;:::i;:::-;;;;3948:6;3955:1;3948:9;;;;;;;;:::i;:::-;;;;:37;;;;;;;;;;-1:-1:-1;4000:11:0;;;;;3928:3;;;:::i;:::-;;;3888:135;;;-1:-1:-1;4041:10:0;;4033:55;;;;-1:-1:-1;;;;;4033:55:0;;10118:2:1;4033:55:0;;;10100:21:1;;;10137:18;;;10130:30;10196:34;10176:18;;;10169:62;10248:18;;4033:55:0;9916:356:1;4033:55:0;4113:6;3677:451;-1:-1:-1;;;3677:451:0:o;9813:156::-;9875:7;9950:11;9960:1;9951:5;;;9950:11;:::i;:::-;9940:21;;9941:5;;;9940:21;:::i;54030:212::-;54124:10;;54100:7;;54124:15;;54120:115;;-1:-1:-1;54163:1:0;;54030:212;-1:-1:-1;54030:212:0:o;54120:115::-;54208:10;;54204:3;;54208:14;;54221:1;;54208:14;:::i;:::-;54204:19;;;;;;;;:::i;:::-;;;;;;;;;54197:26;;54030:212;;;:::o;54120:115::-;54030:212;;;:::o;14:332:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;180:9;167:23;-1:-1:-1;;223:5:1;219:78;212:5;209:89;199:117;;312:1;309;302:12;543:258;615:1;625:113;639:6;636:1;633:13;625:113;;;715:11;;;709:18;696:11;;;689:39;661:2;654:10;625:113;;;756:6;753:1;750:13;747:48;;;-1:-1:-1;;791:1:1;773:16;;766:27;543:258::o;806:383::-;955:2;944:9;937:21;918:4;987:6;981:13;1030:6;1025:2;1014:9;1010:18;1003:34;1046:66;1105:6;1100:2;1089:9;1085:18;1080:2;1072:6;1068:15;1046:66;:::i;:::-;1173:2;1152:15;-1:-1:-1;;1148:29:1;1133:45;;;;1180:2;1129:54;;806:383;-1:-1:-1;;806:383:1:o;1194:196::-;1262:20;;-1:-1:-1;;;;;1311:54:1;;1301:65;;1291:93;;1380:1;1377;1370:12;1395:254;1463:6;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;1639:2;1624:18;;;;1611:32;;-1:-1:-1;;;1395:254:1:o;1836:328::-;1913:6;1921;1929;1982:2;1970:9;1961:7;1957:23;1953:32;1950:52;;;1998:1;1995;1988:12;1950:52;2021:29;2040:9;2021:29;:::i;:::-;2011:39;;2069:38;2103:2;2092:9;2088:18;2069:38;:::i;:::-;2059:48;;2154:2;2143:9;2139:18;2126:32;2116:42;;1836:328;;;;;:::o;2169:180::-;2228:6;2281:2;2269:9;2260:7;2256:23;2252:32;2249:52;;;2297:1;2294;2287:12;2249:52;-1:-1:-1;2320:23:1;;2169:180;-1:-1:-1;2169:180:1:o;2536:254::-;2604:6;2612;2665:2;2653:9;2644:7;2640:23;2636:32;2633:52;;;2681:1;2678;2671:12;2633:52;2717:9;2704:23;2694:33;;2746:38;2780:2;2769:9;2765:18;2746:38;:::i;:::-;2736:48;;2536:254;;;;;:::o;2984:186::-;3043:6;3096:2;3084:9;3075:7;3071:23;3067:32;3064:52;;;3112:1;3109;3102:12;3064:52;3135:29;3154:9;3135:29;:::i;3360:260::-;3428:6;3436;3489:2;3477:9;3468:7;3464:23;3460:32;3457:52;;;3505:1;3502;3495:12;3457:52;3528:29;3547:9;3528:29;:::i;:::-;3518:39;;3576:38;3610:2;3599:9;3595:18;3576:38;:::i;3625:437::-;3710:1;3700:12;;3757:1;3747:12;;;3768:61;;3822:4;3814:6;3810:17;3800:27;;3768:61;3875:2;3867:6;3864:14;3844:18;3841:38;3838:218;;-1:-1:-1;;;;;3909:1:1;3902:88;4013:4;4010:1;4003:15;4041:4;4038:1;4031:15;3838:218;;3625:437;;;:::o;4483:184::-;-1:-1:-1;;;;;4532:1:1;4525:88;4632:4;4629:1;4622:15;4656:4;4653:1;4646:15;4672:128;4712:3;4743:1;4739:6;4736:1;4733:13;4730:39;;;4749:18;;:::i;:::-;-1:-1:-1;4785:9:1;;4672:128::o;8303:184::-;-1:-1:-1;;;;;8352:1:1;8345:88;8452:4;8449:1;8442:15;8476:4;8473:1;8466:15;8492:786;8903:25;8898:3;8891:38;8873:3;8958:6;8952:13;8974:62;9029:6;9024:2;9019:3;9015:12;9008:4;9000:6;8996:17;8974:62;:::i;:::-;9100:19;9095:2;9055:16;;;9087:11;;;9080:40;9145:13;;9167:63;9145:13;9216:2;9208:11;;9201:4;9189:17;;9167:63;:::i;:::-;9250:17;9269:2;9246:26;;8492:786;-1:-1:-1;;;;8492:786:1:o;9283:125::-;9323:4;9351:1;9348;9345:8;9342:34;;;9356:18;;:::i;:::-;-1:-1:-1;9393:9:1;;9283:125::o;9413:168::-;9453:7;9519:1;9515;9511:6;9507:14;9504:1;9501:21;9496:1;9489:9;9482:17;9478:45;9475:71;;;9526:18;;:::i;:::-;-1:-1:-1;9566:9:1;;9413:168::o;9586:184::-;-1:-1:-1;;;;;9635:1:1;9628:88;9735:4;9732:1;9725:15;9759:4;9756:1;9749:15;9775:136;9814:3;9842:5;9832:39;;9851:18;;:::i;:::-;-1:-1:-1;;;9887:18:1;;9775:136::o;10277:274::-;10317:1;10343;10333:189;;-1:-1:-1;;;;;10375:1:1;10368:88;10479:4;10476:1;10469:15;10507:4;10504:1;10497:15;10333:189;-1:-1:-1;10536:9:1;;10277:274::o
Swarm Source
ipfs://9d4d1867c53e58b8b0da107f27747926b397affb2502c41d9c39305fe168d6d0
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.