ERC-20
Social Networking
Overview
Max Total Supply
101,182,211,718.912000001101629735 LGBTQ
Holders
140 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,580,000 LGBTQValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC20PresetMinterPauser
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-27 */ // SPDX-License-Identifier: MIT 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; } } pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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); } 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); } pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } 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; } } /** * @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 Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev 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]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @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 override returns (bool) { return _roles[role].members[account]; } /** * @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]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { 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 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. */ 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. */ 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 granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ 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. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } } 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 guidelines: functions revert instead * of 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, 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); } /** * @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); } /** * @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 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 to 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 {} } pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } pragma solidity ^0.8.0; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } pragma solidity ^0.8.0; /** * @dev {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * See {ERC20-constructor}. */ constructor(string memory name, string memory symbol) ERC20(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, uint256 amount) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint"); _mint(to, amount); } /** * @dev Pauses all token transfers. * * See {ERC20Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC20Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override(ERC20, ERC20Pausable) { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001e3438038062001e3483398101604081905262000034916200039b565b8151829082906200004d90600590602085019062000242565b5080516200006390600690602084019062000242565b50506007805460ff19169055506200007d600033620000dd565b620000a97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000dd565b620000d57f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620000dd565b505062000455565b620000f482826200012060201b620009e91760201c565b60008281526001602090815260409091206200011b918390620009f362000130821b17901c565b505050565b6200012c828262000150565b5050565b600062000147836001600160a01b038416620001f0565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200012c576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001ac3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205462000239575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200014a565b5060006200014a565b828054620002509062000402565b90600052602060002090601f016020900481019282620002745760008555620002bf565b82601f106200028f57805160ff1916838001178555620002bf565b82800160010185558215620002bf579182015b82811115620002bf578251825591602001919060010190620002a2565b50620002cd929150620002d1565b5090565b5b80821115620002cd5760008155600101620002d2565b600082601f830112620002f9578081fd5b81516001600160401b03808211156200031657620003166200043f565b604051601f8301601f19908116603f011681019082821181831017156200034157620003416200043f565b816040528381526020925086838588010111156200035d578485fd5b8491505b8382101562000380578582018301518183018401529082019062000361565b838211156200039157848385830101525b9695505050505050565b60008060408385031215620003ae578182fd5b82516001600160401b0380821115620003c5578384fd5b620003d386838701620002e8565b93506020850151915080821115620003e9578283fd5b50620003f885828601620002e8565b9150509250929050565b600181811c908216806200041757607f821691505b602082108114156200043957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6119cf80620004656000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d5391393146103af578063d547741f146103d6578063dd62ed3e146103e9578063e63ab1e91461042257600080fd5b8063a457c2d714610376578063a9059cbb14610389578063ca15c8731461039c57600080fd5b80639010d07c116100d35780639010d07c1461032857806391d148541461035357806395d89b4114610366578063a217fddf1461036e57600080fd5b806370a08231146102e457806379cc67901461030d5780638456cb591461032057600080fd5b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146102ab57806340c10f19146102b357806342966c68146102c65780635c975abb146102d957600080fd5b8063313ce5671461027657806336568abe14610285578063395093511461029857600080fd5b806318160ddd116101a257806318160ddd1461021957806323b872dd1461022b578063248a9ca31461023e5780632f2ff15d1461026157600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d73660046117e3565b610449565b60405190151581526020015b60405180910390f35b6101f9610474565b6040516101e89190611880565b6101dc61021436600461175f565b610506565b6004545b6040519081526020016101e8565b6101dc610239366004611724565b61051c565b61021d61024c366004611788565b60009081526020819052604090206001015490565b61027461026f3660046117a0565b6105cb565b005b604051601281526020016101e8565b6102746102933660046117a0565b6105f2565b6101dc6102a636600461175f565b610614565b610274610650565b6102746102c136600461175f565b6106f6565b6102746102d4366004611788565b610799565b60075460ff166101dc565b61021d6102f23660046116d8565b6001600160a01b031660009081526002602052604090205490565b61027461031b36600461175f565b6107a6565b610274610827565b61033b6103363660046117c2565b6108cb565b6040516001600160a01b0390911681526020016101e8565b6101dc6103613660046117a0565b6108ea565b6101f9610913565b61021d600081565b6101dc61038436600461175f565b610922565b6101dc61039736600461175f565b6109bb565b61021d6103aa366004611788565b6109c8565b61021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102746103e43660046117a0565b6109df565b61021d6103f73660046116f2565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061046e575061046e82610a08565b92915050565b60606005805461048390611948565b80601f01602080910402602001604051908101604052809291908181526020018280546104af90611948565b80156104fc5780601f106104d1576101008083540402835291602001916104fc565b820191906000526020600020905b8154815290600101906020018083116104df57829003601f168201915b5050505050905090565b6000610513338484610a3d565b50600192915050565b6000610529848484610b62565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105b35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105c08533858403610a3d565b506001949350505050565b6105d58282610d3c565b60008281526001602052604090206105ed90826109f3565b505050565b6105fc8282610d62565b60008281526001602052604090206105ed9082610ddc565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161051391859061064b9086906118b3565b610a3d565b61067a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336108ea565b6106ec5760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016105aa565b6106f4610df1565b565b6107207f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336108ea565b61078b5760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d7573742068616044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b60648201526084016105aa565b6107958282610e84565b5050565b6107a33382610f6f565b50565b60006107b283336103f7565b9050818110156108105760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105aa565b61081d8333848403610a3d565b6105ed8383610f6f565b6108517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336108ea565b6108c35760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016105aa565b6106f46110c1565b60008281526001602052604081206108e3908361113c565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606006805461048390611948565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156109a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105aa565b6109b13385858403610a3d565b5060019392505050565b6000610513338484610b62565b600081815260016020526040812061046e90611148565b6105fc8282611152565b6107958282611178565b60006108e3836001600160a01b0384166111fc565b60006001600160e01b03198216637965db0b60e01b148061046e57506301ffc9a760e01b6001600160e01b031983161461046e565b6001600160a01b038316610a9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105aa565b6001600160a01b038216610b005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105aa565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610bc65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105aa565b6001600160a01b038216610c285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105aa565b610c3383838361124b565b6001600160a01b03831660009081526002602052604090205481811015610cab5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105aa565b6001600160a01b03808516600090815260026020526040808220858503905591851681529081208054849290610ce29084906118b3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d2e91815260200190565b60405180910390a350505050565b600082815260208190526040902060010154610d588133611256565b6105ed8383611178565b6001600160a01b0381163314610dd25760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105aa565b61079582826112ba565b60006108e3836001600160a01b03841661131f565b60075460ff16610e3a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105aa565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610eda5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105aa565b610ee66000838361124b565b8060046000828254610ef891906118b3565b90915550506001600160a01b03821660009081526002602052604081208054839290610f259084906118b3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610fcf5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105aa565b610fdb8260008361124b565b6001600160a01b0382166000908152600260205260409020548181101561104f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105aa565b6001600160a01b038316600090815260026020526040812083830390556004805484929061107e9084906118ea565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b55565b60075460ff16156111075760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105aa565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e673390565b60006108e3838361143c565b600061046e825490565b60008281526020819052604090206001015461116e8133611256565b6105ed83836112ba565b61118282826108ea565b610795576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556111b83390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546112435750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561046e565b50600061046e565b6105ed838383611474565b61126082826108ea565b61079557611278816001600160a01b031660146114da565b6112838360206114da565b60405160200161129492919061180b565b60408051601f198184030181529082905262461bcd60e51b82526105aa91600401611880565b6112c482826108ea565b15610795576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156114325760006113436001836118ea565b8554909150600090611357906001906118ea565b90508181146113d857600086600001828154811061138557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106113b657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b85548690806113f757634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061046e565b600091505061046e565b600082600001828154811061146157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60075460ff16156105ed5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105aa565b606060006114e98360026118cb565b6114f49060026118b3565b67ffffffffffffffff81111561151a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611544576020820181803683370190505b509050600360fc1b8160008151811061156d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106115aa57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006115ce8460026118cb565b6115d99060016118b3565b90505b600181111561166d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061161b57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061163f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361166681611931565b90506115dc565b5083156108e35760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105aa565b80356001600160a01b03811681146116d357600080fd5b919050565b6000602082840312156116e9578081fd5b6108e3826116bc565b60008060408385031215611704578081fd5b61170d836116bc565b915061171b602084016116bc565b90509250929050565b600080600060608486031215611738578081fd5b611741846116bc565b925061174f602085016116bc565b9150604084013590509250925092565b60008060408385031215611771578182fd5b61177a836116bc565b946020939093013593505050565b600060208284031215611799578081fd5b5035919050565b600080604083850312156117b2578182fd5b8235915061171b602084016116bc565b600080604083850312156117d4578182fd5b50508035926020909101359150565b6000602082840312156117f4578081fd5b81356001600160e01b0319811681146108e3578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611843816017850160208801611901565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611874816028840160208801611901565b01602801949350505050565b602081526000825180602084015261189f816040850160208701611901565b601f01601f19169190910160400192915050565b600082198211156118c6576118c6611983565b500190565b60008160001904831182151516156118e5576118e5611983565b500290565b6000828210156118fc576118fc611983565b500390565b60005b8381101561191c578181015183820152602001611904565b8381111561192b576000848401525b50505050565b60008161194057611940611983565b506000190190565b600181811c9082168061195c57607f821691505b6020821081141561197d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122076fcfbe7f90b2a2ae5f06a30528b32a53b5e6251bb0660fa26ed57d89f83c05a64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005507269646500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c47425451000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d5391393146103af578063d547741f146103d6578063dd62ed3e146103e9578063e63ab1e91461042257600080fd5b8063a457c2d714610376578063a9059cbb14610389578063ca15c8731461039c57600080fd5b80639010d07c116100d35780639010d07c1461032857806391d148541461035357806395d89b4114610366578063a217fddf1461036e57600080fd5b806370a08231146102e457806379cc67901461030d5780638456cb591461032057600080fd5b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146102ab57806340c10f19146102b357806342966c68146102c65780635c975abb146102d957600080fd5b8063313ce5671461027657806336568abe14610285578063395093511461029857600080fd5b806318160ddd116101a257806318160ddd1461021957806323b872dd1461022b578063248a9ca31461023e5780632f2ff15d1461026157600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d73660046117e3565b610449565b60405190151581526020015b60405180910390f35b6101f9610474565b6040516101e89190611880565b6101dc61021436600461175f565b610506565b6004545b6040519081526020016101e8565b6101dc610239366004611724565b61051c565b61021d61024c366004611788565b60009081526020819052604090206001015490565b61027461026f3660046117a0565b6105cb565b005b604051601281526020016101e8565b6102746102933660046117a0565b6105f2565b6101dc6102a636600461175f565b610614565b610274610650565b6102746102c136600461175f565b6106f6565b6102746102d4366004611788565b610799565b60075460ff166101dc565b61021d6102f23660046116d8565b6001600160a01b031660009081526002602052604090205490565b61027461031b36600461175f565b6107a6565b610274610827565b61033b6103363660046117c2565b6108cb565b6040516001600160a01b0390911681526020016101e8565b6101dc6103613660046117a0565b6108ea565b6101f9610913565b61021d600081565b6101dc61038436600461175f565b610922565b6101dc61039736600461175f565b6109bb565b61021d6103aa366004611788565b6109c8565b61021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102746103e43660046117a0565b6109df565b61021d6103f73660046116f2565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061046e575061046e82610a08565b92915050565b60606005805461048390611948565b80601f01602080910402602001604051908101604052809291908181526020018280546104af90611948565b80156104fc5780601f106104d1576101008083540402835291602001916104fc565b820191906000526020600020905b8154815290600101906020018083116104df57829003601f168201915b5050505050905090565b6000610513338484610a3d565b50600192915050565b6000610529848484610b62565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105b35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105c08533858403610a3d565b506001949350505050565b6105d58282610d3c565b60008281526001602052604090206105ed90826109f3565b505050565b6105fc8282610d62565b60008281526001602052604090206105ed9082610ddc565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161051391859061064b9086906118b3565b610a3d565b61067a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336108ea565b6106ec5760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016105aa565b6106f4610df1565b565b6107207f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336108ea565b61078b5760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d7573742068616044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b60648201526084016105aa565b6107958282610e84565b5050565b6107a33382610f6f565b50565b60006107b283336103f7565b9050818110156108105760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105aa565b61081d8333848403610a3d565b6105ed8383610f6f565b6108517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336108ea565b6108c35760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016105aa565b6106f46110c1565b60008281526001602052604081206108e3908361113c565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606006805461048390611948565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156109a45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105aa565b6109b13385858403610a3d565b5060019392505050565b6000610513338484610b62565b600081815260016020526040812061046e90611148565b6105fc8282611152565b6107958282611178565b60006108e3836001600160a01b0384166111fc565b60006001600160e01b03198216637965db0b60e01b148061046e57506301ffc9a760e01b6001600160e01b031983161461046e565b6001600160a01b038316610a9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105aa565b6001600160a01b038216610b005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105aa565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610bc65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105aa565b6001600160a01b038216610c285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105aa565b610c3383838361124b565b6001600160a01b03831660009081526002602052604090205481811015610cab5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105aa565b6001600160a01b03808516600090815260026020526040808220858503905591851681529081208054849290610ce29084906118b3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d2e91815260200190565b60405180910390a350505050565b600082815260208190526040902060010154610d588133611256565b6105ed8383611178565b6001600160a01b0381163314610dd25760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105aa565b61079582826112ba565b60006108e3836001600160a01b03841661131f565b60075460ff16610e3a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105aa565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610eda5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105aa565b610ee66000838361124b565b8060046000828254610ef891906118b3565b90915550506001600160a01b03821660009081526002602052604081208054839290610f259084906118b3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610fcf5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105aa565b610fdb8260008361124b565b6001600160a01b0382166000908152600260205260409020548181101561104f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105aa565b6001600160a01b038316600090815260026020526040812083830390556004805484929061107e9084906118ea565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b55565b60075460ff16156111075760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105aa565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e673390565b60006108e3838361143c565b600061046e825490565b60008281526020819052604090206001015461116e8133611256565b6105ed83836112ba565b61118282826108ea565b610795576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556111b83390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546112435750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561046e565b50600061046e565b6105ed838383611474565b61126082826108ea565b61079557611278816001600160a01b031660146114da565b6112838360206114da565b60405160200161129492919061180b565b60408051601f198184030181529082905262461bcd60e51b82526105aa91600401611880565b6112c482826108ea565b15610795576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156114325760006113436001836118ea565b8554909150600090611357906001906118ea565b90508181146113d857600086600001828154811061138557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106113b657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b85548690806113f757634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061046e565b600091505061046e565b600082600001828154811061146157634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60075460ff16156105ed5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105aa565b606060006114e98360026118cb565b6114f49060026118b3565b67ffffffffffffffff81111561151a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611544576020820181803683370190505b509050600360fc1b8160008151811061156d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106115aa57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006115ce8460026118cb565b6115d99060016118b3565b90505b600181111561166d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061161b57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061163f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361166681611931565b90506115dc565b5083156108e35760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105aa565b80356001600160a01b03811681146116d357600080fd5b919050565b6000602082840312156116e9578081fd5b6108e3826116bc565b60008060408385031215611704578081fd5b61170d836116bc565b915061171b602084016116bc565b90509250929050565b600080600060608486031215611738578081fd5b611741846116bc565b925061174f602085016116bc565b9150604084013590509250925092565b60008060408385031215611771578182fd5b61177a836116bc565b946020939093013593505050565b600060208284031215611799578081fd5b5035919050565b600080604083850312156117b2578182fd5b8235915061171b602084016116bc565b600080604083850312156117d4578182fd5b50508035926020909101359150565b6000602082840312156117f4578081fd5b81356001600160e01b0319811681146108e3578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611843816017850160208801611901565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611874816028840160208801611901565b01602801949350505050565b602081526000825180602084015261189f816040850160208701611901565b601f01601f19169190910160400192915050565b600082198211156118c6576118c6611983565b500190565b60008160001904831182151516156118e5576118e5611983565b500290565b6000828210156118fc576118fc611983565b500390565b60005b8381101561191c578181015183820152602001611904565b8381111561192b576000848401525b50505050565b60008161194057611940611983565b506000190190565b600181811c9082168061195c57607f821691505b6020821081141561197d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122076fcfbe7f90b2a2ae5f06a30528b32a53b5e6251bb0660fa26ed57d89f83c05a64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005507269646500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c47425451000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Pride
Arg [1] : symbol (string): LGBTQ
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 5072696465000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4c47425451000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
44841:2079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26668:214;;;;;;:::i;:::-;;:::i;:::-;;;3677:14:1;;3670:22;3652:41;;3640:2;3625:18;26668:214:0;;;;;;;;30990:100;;;:::i;:::-;;;;;;;:::i;33157:169::-;;;;;;:::i;:::-;;:::i;32110:108::-;32198:12;;32110:108;;;3850:25:1;;;3838:2;3823:18;32110:108:0;3805:76:1;33808:492:0;;;;;;:::i;:::-;;:::i;22779:123::-;;;;;;:::i;:::-;22845:7;22872:12;;;;;;;;;;:22;;;;22779:123;28026:165;;;;;;:::i;:::-;;:::i;:::-;;31952:93;;;32035:2;12163:36:1;;12151:2;12136:18;31952:93:0;12118:87:1;28549:174:0;;;;;;:::i;:::-;;:::i;34709:215::-;;;;;;:::i;:::-;;:::i;46514:178::-;;;:::i;45705:205::-;;;;;;:::i;:::-;;:::i;40455:91::-;;;;;;:::i;:::-;;:::i;42254:86::-;42325:7;;;;42254:86;;32281:127;;;;;;:::i;:::-;-1:-1:-1;;;;;32382:18:0;32355:7;32382:18;;;:9;:18;;;;;;;32281:127;40865:368;;;;;;:::i;:::-;;:::i;46124:172::-;;;:::i;27481:145::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3468:32:1;;;3450:51;;3438:2;3423:18;27481:145:0;3405:102:1;21664:139:0;;;;;;:::i;:::-;;:::i;31209:104::-;;;:::i;19642:49::-;;19687:4;19642:49;;35427:413;;;;;;:::i;:::-;;:::i;32621:175::-;;;;;;:::i;:::-;;:::i;27800:134::-;;;;;;:::i;:::-;;:::i;44947:62::-;;44985:24;44947:62;;28284:170;;;;;;:::i;:::-;;:::i;32859:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;32975:18:0;;;32948:7;32975:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32859:151;45016:62;;45054:24;45016:62;;26668:214;26753:4;-1:-1:-1;;;;;;26777:57:0;;-1:-1:-1;;;26777:57:0;;:97;;;26838:36;26862:11;26838:23;:36::i;:::-;26770:104;26668:214;-1:-1:-1;;26668:214:0:o;30990:100::-;31044:13;31077:5;31070:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30990:100;:::o;33157:169::-;33240:4;33257:39;681:10;33280:7;33289:6;33257:8;:39::i;:::-;-1:-1:-1;33314:4:0;33157:169;;;;:::o;33808:492::-;33948:4;33965:36;33975:6;33983:9;33994:6;33965:9;:36::i;:::-;-1:-1:-1;;;;;34041:19:0;;34014:24;34041:19;;;:11;:19;;;;;;;;681:10;34041:33;;;;;;;;34093:26;;;;34085:79;;;;-1:-1:-1;;;34085:79:0;;7574:2:1;34085:79:0;;;7556:21:1;7613:2;7593:18;;;7586:30;7652:34;7632:18;;;7625:62;-1:-1:-1;;;7703:18:1;;;7696:38;7751:19;;34085:79:0;;;;;;;;;34200:57;34209:6;681:10;34250:6;34231:16;:25;34200:8;:57::i;:::-;-1:-1:-1;34288:4:0;;33808:492;-1:-1:-1;;;;33808:492:0:o;28026:165::-;28111:30;28127:4;28133:7;28111:15;:30::i;:::-;28152:18;;;;:12;:18;;;;;:31;;28175:7;28152:22;:31::i;:::-;;28026:165;;:::o;28549:174::-;28637:33;28656:4;28662:7;28637:18;:33::i;:::-;28681:18;;;;:12;:18;;;;;:34;;28707:7;28681:25;:34::i;34709:215::-;681:10;34797:4;34846:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34846:34:0;;;;;;;;;;34797:4;;34814:80;;34837:7;;34846:47;;34883:10;;34846:47;:::i;:::-;34814:8;:80::i;46514:178::-;46567:34;45054:24;681:10;21664:139;:::i;46567:34::-;46559:104;;;;-1:-1:-1;;;46559:104:0;;5993:2:1;46559:104:0;;;5975:21:1;6032:2;6012:18;;;6005:30;6071:34;6051:18;;;6044:62;6142:27;6122:18;;;6115:55;6187:19;;46559:104:0;5965:247:1;46559:104:0;46674:10;:8;:10::i;:::-;46514:178::o;45705:205::-;45781:34;44985:24;681:10;21664:139;:::i;45781:34::-;45773:101;;;;-1:-1:-1;;;45773:101:0;;7983:2:1;45773:101:0;;;7965:21:1;8022:2;8002:18;;;7995:30;8061:34;8041:18;;;8034:62;-1:-1:-1;;;8112:18:1;;;8105:52;8174:19;;45773:101:0;7955:244:1;45773:101:0;45885:17;45891:2;45895:6;45885:5;:17::i;:::-;45705:205;;:::o;40455:91::-;40511:27;681:10;40531:6;40511:5;:27::i;:::-;40455:91;:::o;40865:368::-;40942:24;40969:32;40979:7;681:10;32859:151;:::i;40969:32::-;40942:59;;41040:6;41020:16;:26;;41012:75;;;;-1:-1:-1;;;41012:75:0;;8406:2:1;41012:75:0;;;8388:21:1;8445:2;8425:18;;;8418:30;8484:34;8464:18;;;8457:62;-1:-1:-1;;;8535:18:1;;;8528:34;8579:19;;41012:75:0;8378:226:1;41012:75:0;41123:58;41132:7;681:10;41174:6;41155:16;:25;41123:8;:58::i;:::-;41203:22;41209:7;41218:6;41203:5;:22::i;46124:172::-;46175:34;45054:24;681:10;21664:139;:::i;46175:34::-;46167:102;;;;-1:-1:-1;;;46167:102:0;;10024:2:1;46167:102:0;;;10006:21:1;10063:2;10043:18;;;10036:30;10102:34;10082:18;;;10075:62;10173:25;10153:18;;;10146:53;10216:19;;46167:102:0;9996:245:1;46167:102:0;46280:8;:6;:8::i;27481:145::-;27563:7;27590:18;;;:12;:18;;;;;:28;;27612:5;27590:21;:28::i;:::-;27583:35;27481:145;-1:-1:-1;;;27481:145:0:o;21664:139::-;21742:4;21766:12;;;;;;;;;;;-1:-1:-1;;;;;21766:29:0;;;;;;;;;;;;;;;21664:139::o;31209:104::-;31265:13;31298:7;31291:14;;;;;:::i;35427:413::-;681:10;35520:4;35564:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35564:34:0;;;;;;;;;;35617:35;;;;35609:85;;;;-1:-1:-1;;;35609:85:0;;10448:2:1;35609:85:0;;;10430:21:1;10487:2;10467:18;;;10460:30;10526:34;10506:18;;;10499:62;-1:-1:-1;;;10577:18:1;;;10570:35;10622:19;;35609:85:0;10420:227:1;35609:85:0;35730:67;681:10;35753:7;35781:15;35762:16;:34;35730:8;:67::i;:::-;-1:-1:-1;35828:4:0;;35427:413;-1:-1:-1;;;35427:413:0:o;32621:175::-;32707:4;32724:42;681:10;32748:9;32759:6;32724:9;:42::i;27800:134::-;27872:7;27899:18;;;:12;:18;;;;;:27;;:25;:27::i;28284:170::-;28370:31;28387:4;28393:7;28370:16;:31::i;25013:112::-;25092:25;25103:4;25109:7;25092:10;:25::i;11859:152::-;11929:4;11953:50;11958:3;-1:-1:-1;;;;;11978:23:0;;11953:4;:50::i;21368:204::-;21453:4;-1:-1:-1;;;;;;21477:47:0;;-1:-1:-1;;;21477:47:0;;:87;;-1:-1:-1;;;;;;;;;;17785:40:0;;;21528:36;17676:157;38930:380;-1:-1:-1;;;;;39066:19:0;;39058:68;;;;-1:-1:-1;;;39058:68:0;;9619:2:1;39058:68:0;;;9601:21:1;9658:2;9638:18;;;9631:30;9697:34;9677:18;;;9670:62;-1:-1:-1;;;9748:18:1;;;9741:34;9792:19;;39058:68:0;9591:226:1;39058:68:0;-1:-1:-1;;;;;39145:21:0;;39137:68;;;;-1:-1:-1;;;39137:68:0;;6419:2:1;39137:68:0;;;6401:21:1;6458:2;6438:18;;;6431:30;6497:34;6477:18;;;6470:62;-1:-1:-1;;;6548:18:1;;;6541:32;6590:19;;39137:68:0;6391:224:1;39137:68:0;-1:-1:-1;;;;;39218:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39270:32;;3850:25:1;;;39270:32:0;;3823:18:1;39270:32:0;;;;;;;;38930:380;;;:::o;36330:674::-;-1:-1:-1;;;;;36470:20:0;;36462:70;;;;-1:-1:-1;;;36462:70:0;;9213:2:1;36462:70:0;;;9195:21:1;9252:2;9232:18;;;9225:30;9291:34;9271:18;;;9264:62;-1:-1:-1;;;9342:18:1;;;9335:35;9387:19;;36462:70:0;9185:227:1;36462:70:0;-1:-1:-1;;;;;36551:23:0;;36543:71;;;;-1:-1:-1;;;36543:71:0;;4837:2:1;36543:71:0;;;4819:21:1;4876:2;4856:18;;;4849:30;4915:34;4895:18;;;4888:62;-1:-1:-1;;;4966:18:1;;;4959:33;5009:19;;36543:71:0;4809:225:1;36543:71:0;36627:47;36648:6;36656:9;36667:6;36627:20;:47::i;:::-;-1:-1:-1;;;;;36711:17:0;;36687:21;36711:17;;;:9;:17;;;;;;36747:23;;;;36739:74;;;;-1:-1:-1;;;36739:74:0;;6822:2:1;36739:74:0;;;6804:21:1;6861:2;6841:18;;;6834:30;6900:34;6880:18;;;6873:62;-1:-1:-1;;;6951:18:1;;;6944:36;6997:19;;36739:74:0;6794:228:1;36739:74:0;-1:-1:-1;;;;;36849:17:0;;;;;;;:9;:17;;;;;;36869:22;;;36849:42;;36913:20;;;;;;;;:30;;36885:6;;36849:17;36913:30;;36885:6;;36913:30;:::i;:::-;;;;;;;;36978:9;-1:-1:-1;;;;;36961:35:0;36970:6;-1:-1:-1;;;;;36961:35:0;;36989:6;36961:35;;;;3850:25:1;;3838:2;3823:18;;3805:76;36961:35:0;;;;;;;;36330:674;;;;:::o;23164:147::-;22845:7;22872:12;;;;;;;;;;:22;;;21246:30;21257:4;681:10;21246;:30::i;:::-;23278:25:::1;23289:4;23295:7;23278:10;:25::i;24212:218::-:0;-1:-1:-1;;;;;24308:23:0;;681:10;24308:23;24300:83;;;;-1:-1:-1;;;24300:83:0;;10854:2:1;24300:83:0;;;10836:21:1;10893:2;10873:18;;;10866:30;10932:34;10912:18;;;10905:62;-1:-1:-1;;;10983:18:1;;;10976:45;11038:19;;24300:83:0;10826:237:1;24300:83:0;24396:26;24408:4;24414:7;24396:11;:26::i;12187:158::-;12260:4;12284:53;12292:3;-1:-1:-1;;;;;12312:23:0;;12284:7;:53::i;43313:120::-;42325:7;;;;42849:41;;;;-1:-1:-1;;;42849:41:0;;5241:2:1;42849:41:0;;;5223:21:1;5280:2;5260:18;;;5253:30;-1:-1:-1;;;5299:18:1;;;5292:50;5359:18;;42849:41:0;5213:170:1;42849:41:0;43372:7:::1;:15:::0;;-1:-1:-1;;43372:15:0::1;::::0;;43403:22:::1;681:10:::0;43412:12:::1;43403:22;::::0;-1:-1:-1;;;;;3468:32:1;;;3450:51;;3438:2;3423:18;43403:22:0::1;;;;;;;43313:120::o:0;37291:338::-;-1:-1:-1;;;;;37375:21:0;;37367:65;;;;-1:-1:-1;;;37367:65:0;;11270:2:1;37367:65:0;;;11252:21:1;11309:2;11289:18;;;11282:30;11348:33;11328:18;;;11321:61;11399:18;;37367:65:0;11242:181:1;37367:65:0;37445:49;37474:1;37478:7;37487:6;37445:20;:49::i;:::-;37523:6;37507:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;37540:18:0;;;;;;:9;:18;;;;;:28;;37562:6;;37540:18;:28;;37562:6;;37540:28;:::i;:::-;;;;-1:-1:-1;;37584:37:0;;3850:25:1;;;-1:-1:-1;;;;;37584:37:0;;;37601:1;;37584:37;;3838:2:1;3823:18;37584:37:0;;;;;;;37291:338;;:::o;37962:530::-;-1:-1:-1;;;;;38046:21:0;;38038:67;;;;-1:-1:-1;;;38038:67:0;;8811:2:1;38038:67:0;;;8793:21:1;8850:2;8830:18;;;8823:30;8889:34;8869:18;;;8862:62;-1:-1:-1;;;8940:18:1;;;8933:31;8981:19;;38038:67:0;8783:223:1;38038:67:0;38118:49;38139:7;38156:1;38160:6;38118:20;:49::i;:::-;-1:-1:-1;;;;;38205:18:0;;38180:22;38205:18;;;:9;:18;;;;;;38242:24;;;;38234:71;;;;-1:-1:-1;;;38234:71:0;;5590:2:1;38234:71:0;;;5572:21:1;5629:2;5609:18;;;5602:30;5668:34;5648:18;;;5641:62;-1:-1:-1;;;5719:18:1;;;5712:32;5761:19;;38234:71:0;5562:224:1;38234:71:0;-1:-1:-1;;;;;38341:18:0;;;;;;:9;:18;;;;;38362:23;;;38341:44;;38407:12;:22;;38379:6;;38341:18;38407:22;;38379:6;;38407:22;:::i;:::-;;;;-1:-1:-1;;38447:37:0;;3850:25:1;;;38473:1:0;;-1:-1:-1;;;;;38447:37:0;;;;;3838:2:1;3823:18;38447:37:0;3805:76:1;43054:118:0;42325:7;;;;42579:9;42571:38;;;;-1:-1:-1;;;42571:38:0;;7229:2:1;42571:38:0;;;7211:21:1;7268:2;7248:18;;;7241:30;-1:-1:-1;;;7287:18:1;;;7280:46;7343:18;;42571:38:0;7201:166:1;42571:38:0;43114:7:::1;:14:::0;;-1:-1:-1;;43114:14:0::1;43124:4;43114:14;::::0;;43144:20:::1;43151:12;681:10:::0;;601:98;13155:158;13229:7;13280:22;13284:3;13296:5;13280:3;:22::i;12684:117::-;12747:7;12774:19;12782:3;9505:18;;9422:109;23556:149;22845:7;22872:12;;;;;;;;;;:22;;;21246:30;21257:4;681:10;21246;:30::i;:::-;23671:26:::1;23683:4;23689:7;23671:11;:26::i;25460:229::-:0;25535:22;25543:4;25549:7;25535;:22::i;:::-;25530:152;;25574:6;:12;;;;;;;;;;;-1:-1:-1;;;;;25574:29:0;;;;;;;;;:36;;-1:-1:-1;;25574:36:0;25606:4;25574:36;;;25657:12;681:10;;601:98;25657:12;-1:-1:-1;;;;;25630:40:0;25648:7;-1:-1:-1;;;;;25630:40:0;25642:4;25630:40;;;;;;;;;;25460:229;;:::o;7111:414::-;7174:4;9304:19;;;:12;;;:19;;;;;;7191:327;;-1:-1:-1;7234:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;7417:18;;7395:19;;;:12;;;:19;;;;;;:40;;;;7450:11;;7191:327;-1:-1:-1;7501:5:0;7494:12;;46700:217;46865:44;46892:4;46898:2;46902:6;46865:26;:44::i;22093:497::-;22174:22;22182:4;22188:7;22174;:22::i;:::-;22169:414;;22362:41;22390:7;-1:-1:-1;;;;;22362:41:0;22400:2;22362:19;:41::i;:::-;22476:38;22504:4;22511:2;22476:19;:38::i;:::-;22267:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;22267:270:0;;;;;;;;;;-1:-1:-1;;;22213:358:0;;;;;;;:::i;25697:230::-;25772:22;25780:4;25786:7;25772;:22::i;:::-;25768:152;;;25843:5;25811:12;;;;;;;;;;;-1:-1:-1;;;;;25811:29:0;;;;;;;;;;:37;;-1:-1:-1;;25811:37:0;;;25868:40;681:10;;25811:12;;25868:40;;25843:5;25868:40;25697:230;;:::o;7701:1420::-;7767:4;7906:19;;;:12;;;:19;;;;;;7942:15;;7938:1176;;8317:21;8341:14;8354:1;8341:10;:14;:::i;:::-;8390:18;;8317:38;;-1:-1:-1;8370:17:0;;8390:22;;8411:1;;8390:22;:::i;:::-;8370:42;;8446:13;8433:9;:26;8429:405;;8480:17;8500:3;:11;;8512:9;8500:22;;;;;;-1:-1:-1;;;8500:22:0;;;;;;;;;;;;;;;;;8480:42;;8654:9;8625:3;:11;;8637:13;8625:26;;;;;;-1:-1:-1;;;8625:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;8739:23;;;:12;;;:23;;;;;:36;;;8429:405;8915:17;;:3;;:17;;;-1:-1:-1;;;8915:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;9010:3;:12;;:19;9023:5;9010:19;;;;;;;;;;;9003:26;;;9053:4;9046:11;;;;;;;7938:1176;9097:5;9090:12;;;;;9885:120;9952:7;9979:3;:11;;9991:5;9979:18;;;;;;-1:-1:-1;;;9979:18:0;;;;;;;;;;;;;;;;;9972:25;;9885:120;;;;:::o;43950:272::-;42325:7;;;;44158:9;44150:64;;;;-1:-1:-1;;;44150:64:0;;11630:2:1;44150:64:0;;;11612:21:1;11669:2;11649:18;;;11642:30;11708:34;11688:18;;;11681:62;-1:-1:-1;;;11759:18:1;;;11752:40;11809:19;;44150:64:0;11602:232:1;16491:451:0;16566:13;16592:19;16624:10;16628:6;16624:1;:10;:::i;:::-;:14;;16637:1;16624:14;:::i;:::-;16614:25;;;;;;-1:-1:-1;;;16614:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16614:25:0;;16592:47;;-1:-1:-1;;;16650:6:0;16657:1;16650:9;;;;;;-1:-1:-1;;;16650:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;16650:15:0;;;;;;;;;-1:-1:-1;;;16676:6:0;16683:1;16676:9;;;;;;-1:-1:-1;;;16676:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;16676:15:0;;;;;;;;-1:-1:-1;16707:9:0;16719:10;16723:6;16719:1;:10;:::i;:::-;:14;;16732:1;16719:14;:::i;:::-;16707:26;;16702:135;16739:1;16735;:5;16702:135;;;-1:-1:-1;;;16787:5:0;16795:3;16787:11;16774:25;;;;;-1:-1:-1;;;16774:25:0;;;;;;;;;;;;16762:6;16769:1;16762:9;;;;;;-1:-1:-1;;;16762:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;16762:37:0;;;;;;;;-1:-1:-1;16824:1:0;16814:11;;;;;16742:3;;;:::i;:::-;;;16702:135;;;-1:-1:-1;16855:10:0;;16847:55;;;;-1:-1:-1;;;16847:55:0;;4476:2:1;16847:55:0;;;4458:21:1;;;4495:18;;;4488:30;4554:34;4534:18;;;4527:62;4606:18;;16847:55:0;4448:182:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:264::-;1543:6;1551;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:258::-;1812:6;1820;1873:2;1861:9;1852:7;1848:23;1844:32;1841:2;;;1894:6;1886;1879:22;1841:2;-1:-1:-1;;1922:23:1;;;1992:2;1977:18;;;1964:32;;-1:-1:-1;1831:171:1:o;2007:306::-;2065:6;2118:2;2106:9;2097:7;2093:23;2089:32;2086:2;;;2139:6;2131;2124:22;2086:2;2170:23;;-1:-1:-1;;;;;;2222:32:1;;2212:43;;2202:2;;2274:6;2266;2259:22;2513:786;2924:25;2919:3;2912:38;2894:3;2979:6;2973:13;2995:62;3050:6;3045:2;3040:3;3036:12;3029:4;3021:6;3017:17;2995:62;:::i;:::-;-1:-1:-1;;;3116:2:1;3076:16;;;3108:11;;;3101:40;3166:13;;3188:63;3166:13;3237:2;3229:11;;3222:4;3210:17;;3188:63;:::i;:::-;3271:17;3290:2;3267:26;;2902:397;-1:-1:-1;;;;2902:397:1:o;3886:383::-;4035:2;4024:9;4017:21;3998:4;4067:6;4061:13;4110:6;4105:2;4094:9;4090:18;4083:34;4126:66;4185:6;4180:2;4169:9;4165:18;4160:2;4152:6;4148:15;4126:66;:::i;:::-;4253:2;4232:15;-1:-1:-1;;4228:29:1;4213:45;;;;4260:2;4209:54;;4007:262;-1:-1:-1;;4007:262:1:o;12210:128::-;12250:3;12281:1;12277:6;12274:1;12271:13;12268:2;;;12287:18;;:::i;:::-;-1:-1:-1;12323:9:1;;12258:80::o;12343:168::-;12383:7;12449:1;12445;12441:6;12437:14;12434:1;12431:21;12426:1;12419:9;12412:17;12408:45;12405:2;;;12456:18;;:::i;:::-;-1:-1:-1;12496:9:1;;12395:116::o;12516:125::-;12556:4;12584:1;12581;12578:8;12575:2;;;12589:18;;:::i;:::-;-1:-1:-1;12626:9:1;;12565:76::o;12646:258::-;12718:1;12728:113;12742:6;12739:1;12736:13;12728:113;;;12818:11;;;12812:18;12799:11;;;12792:39;12764:2;12757:10;12728:113;;;12859:6;12856:1;12853:13;12850:2;;;12894:1;12885:6;12880:3;12876:16;12869:27;12850:2;;12699:205;;;:::o;12909:136::-;12948:3;12976:5;12966:2;;12985:18;;:::i;:::-;-1:-1:-1;;;13021:18:1;;12956:89::o;13050:380::-;13129:1;13125:12;;;;13172;;;13193:2;;13247:4;13239:6;13235:17;13225:27;;13193:2;13300;13292:6;13289:14;13269:18;13266:38;13263:2;;;13346:10;13341:3;13337:20;13334:1;13327:31;13381:4;13378:1;13371:15;13409:4;13406:1;13399:15;13263:2;;13105:325;;;:::o;13435:127::-;13496:10;13491:3;13487:20;13484:1;13477:31;13527:4;13524:1;13517:15;13551:4;13548:1;13541:15
Swarm Source
ipfs://76fcfbe7f90b2a2ae5f06a30528b32a53b5e6251bb0660fa26ed57d89f83c05a
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.