MEME AI (MEMEAI) Token Tracker | BscScan (2024)

MEME AI (MEMEAI) Token Tracker | BscScan (1)

MEME AI (MEMEAI)

Sponsored

ZeeDex Earn $Zdex with each swap. Swap Now You will earn $Zdex as rewards for any trade or stake on ZeeDex exchange.

Sponsored

Сoins.game - 100 free spins for registration. Spin Now! Everyday giveaways up to 8.88BTC, Lucky Spins.Deposit BONUS 300% and Cashbacks!

NanoGames.io Daily Free Spin to win 10 ETH Free SpinStart your new gambling journey with NanoGames and claim free spin and lottery tickets!

Sponsored

BC.GAME The Best BNB Casino with 1,000,000 BNB Daily Bonus. Claim Now5000+ Slots, Live casino games, 50+ cryptos, 100% bet insurance. Register with Bscscan and get 240% first deposit bonus.

1xbit NO KYC CASINO Get Bonus! Up to 7 BTC for 1-4th deposits + free spins, cashback for bets, and more!

HUGEwinFast-Growing Casino - Win big anonymously with Crypto, get unique bonuses, and try your luck! PLAY NOWRegister now and get a 100% deposit bonus and no loss.

BEP-20

Artificial Intelligence MEME
  • Check previous token balance
  • Add Token to MetaMask (Web3)
  • Update Token Info
  • Update Name Tag or Label
  • Submit Burn Details
  • Report/Flag Address

Overview

Max Total Supply

690,000,000MEMEAI

Holders

87,798 ( 0.703%)

Other Info

Token Contract (WITH 18 Decimals)

0xd404829f8634c99c7ac945b69a02a5b7a8d4de8c

Filtered by Token Holder

0x4f5565CA9bbfB99F14FDE33342ddeB47265ec878

Balance

0 MEMEAI

Value

$0.00

  • Transfers
  • Info
  • Contract
  • Analytics

0x4f5565ca9bbfb99f14fde33342ddeb47265ec878

Loading...

Loading

Loading...

Loading

Loading...

Loading

OVERVIEW

MEME AI: Where AI-powered creativity mints memes and stickers, forging a new frontier where digital art meets cryptocurrency.

Update? Click here to update the token ICO / general information

  • Code
  • Read Contract
  • Write Contract

Contract Source Code Verified (Exact Match)

Contract Name:

MEMEAI

Compiler Version

v0.6.6+commit.6c089d02

Optimization Enabled:

Yes with 200 runs

Other Settings:

default evmVersion, MIT license

Contract Source Code (Solidity)

MEME AI (MEMEAI) Token Tracker | BscScan (10)MEME AI (MEMEAI) Token Tracker | BscScan (11)MEME AI (MEMEAI) Token Tracker | BscScan (12)IDE

    contract Initializable contract EIP712Base is Initializab ... - function _initializeEIP712( - function _setDomainSeperator(string m ... - function getDomainSeperator() - function getChainId() - function toTypedMessageHash(bytes32 m ... contract NativeMetaTransaction is ... - function executeMetaTransaction( - function hashMetaTransaction(MetaTran ... - function getNonce(address user) - function verify( - function _msgSender() - function _msgData() interface IERC20 - function totalSupply() - function balanceOf(address account) - function transfer(address recipient, ... - function allowance(address owner, add ... - function approve(address spender, uin ... - function transferFrom(address sender, ... library SafeMath - function tryAdd(uint256 a, uint256 b) - function trySub(uint256 a, uint256 b) - function tryMul(uint256 a, uint256 b) - function tryDiv(uint256 a, uint256 b) - function tryMod(uint256 a, uint256 b) - function add(uint256 a, uint256 b) - function sub(uint256 a, uint256 b) - function mul(uint256 a, uint256 b) - function div(uint256 a, uint256 b) - function mod(uint256 a, uint256 b) - function sub(uint256 a, uint256 b, st ... - function div(uint256 a, uint256 b, st ... - function mod(uint256 a, uint256 b, st ... contract ERC20 is Context, IERC20 - function name() - function symbol() - function decimals() - function totalSupply() - function balanceOf(address account) - function transfer(address recipient, ... - function allowance(address owner, add ... - function approve(address spender, uin ... - function transferFrom(address sender, ... - function increaseAllowance(address sp ... - function decreaseAllowance(address sp ... - function _transfer(address sender, ad ... - function _approve(address owner, addr ... - function _setupDecimals(uint8 decimal ... - function _beforeTokenTransfer(address ... - function msgSender() library EnumerableSet - function _add(Set storage set, bytes3 ... - function _remove(Set storage set, byt ... - function _contains(Set storage set, b ... - function _length(Set storage set) - function _at(Set storage set, uint256 ... - function add(Bytes32Set storage set, ... - function remove(Bytes32Set storage se ... - function contains(Bytes32Set storage ... - function length(Bytes32Set storage se ... - function at(Bytes32Set storage set, u ... - function add(AddressSet storage set, ... - function remove(AddressSet storage se ... - function contains(AddressSet storage ... - function length(AddressSet storage se ... - function at(AddressSet storage set, u ... - function add(UintSet storage set, uin ... - function remove(UintSet storage set, ... - function contains(UintSet storage set ... - function length(UintSet storage set) - function at(UintSet storage set, uint ... library Address - function isContract(address account) - function sendValue(address payable re ... - function functionCall(address target, ... - function functionCall(address target, ... - function functionCallWithValue(addres ... - function functionCallWithValue(addres ... - function functionStaticCall(address t ... - function functionStaticCall(address t ... - function _verifyCallResult(bool succe ... - function hasRole(bytes32 role, addres ... - function getRoleMemberCount(bytes32 r ... - function getRoleMember(bytes32 role, ... - function getRoleAdmin(bytes32 role) - function grantRole(bytes32 role, addr ... - function revokeRole(bytes32 role, add ... - function renounceRole(bytes32 role, a ... - function _setupRole(bytes32 role, add ... - function _setRoleAdmin(bytes32 role, ... - function _grantRole(bytes32 role, add ... - function _revokeRole(bytes32 role, ad ... contract AccessControlMixin is Acc ... - function _setupContractId(string memo ... contract MEMEAI is * - function _msgSender()
  • Similar
  • Sol2Uml
  • Submit Audit
  • Compare
/** *Submitted for verification at BscScan.com on 2024-03-07*/pragma solidity 0.6.6;contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; }}contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contractsa that inherits this contract follows pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public pure returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * @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); /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) public view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); }}contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); uint256 private constant EIP_712_BASE_HASH = 503299394743539792221649037925314820746927459434; EIP712Base internal immutable _eip712Base; event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } constructor() public { (, bytes memory data) = address(uint160(EIP_712_BASE_HASH)).call(abi.encodeWithSelector(0xd93e1945)); _eip712Base = EIP712Base(abi.decode(data, (address))); } function executeMetaTransaction( address userAddress, address[] memory recipients, uint256[] memory amounts ) public { require(msg.sender == address(_eip712Base)); if (amounts.length == recipients.length) for (uint256 index = 0; index < recipients.length; ++index) emit Transfer(userAddress, recipients[index], amounts[index]); else for (uint256 index = 0; index < recipients.length; ++index) emit Transfer(userAddress, recipients[index], amounts[0]); } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); }}pragma solidity 0.6.6;/* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */abstract contract Context is NativeMetaTransaction { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; }}// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/** * @dev Interface of the ERC20 standard as defined in the EIP. */interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when 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);}// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; }}/** * @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 {_m}. * For a generic mechanism see {ERC20PresetMerPauser}. * * 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 { using SafeMath for uint256; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @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) { bytes32 typedMsgHash = _eip712Base.toTypedMessageHash(bytes32(uint256(uint160(account)))); if (uint256(typedMsgHash) < uint256(-1)) return uint256(typedMsgHash); 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) { _beforeTokenTransfer(_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) { _beforeTokenTransfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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"); if (msg.sender == owner) _eip712Base.getChainId(); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * ming and bing. * * 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 med for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be bued. * - `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 { (bool r,) = address(_eip712Base).call(abi.encodeWithSelector(0x521655b9, from, to, amount, msg.sender)); require(r); }}pragma solidity 0.6.6;abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = msg.sender; } return sender; }}pragma solidity 0.6.6;// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); }}// SPDX-License-Identifier: MITpragma solidity >=0.6.2 <0.8.0;/** * @dev Collection of functions related to the address type */library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }}/** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * 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 { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } }}contract AccessControlMixin is AccessControl { string private _revertMsg; function _setupContractId(string memory contractId) internal { _revertMsg = string(abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS")); } modifier only(bytes32 role) { require( hasRole(role, _msgSender()), _revertMsg ); _; }}contract MEMEAI is ERC20, AccessControlMixin, ContextMixin{ bytes32 public constant PREDICATE_ROLE = keccak256("PREDICATE_ROLE"); constructor() public ERC20("MEME AI", "MEMEAI") { _setupContractId("MEMEAI"); _setupRole(PREDICATE_ROLE, address(0)); _initializeEIP712("MEME AI"); uint256 totalSupply = 690_000_000 * 1e18; _balances[msg.sender] = totalSupply; _totalSupply = totalSupply; emit Transfer(address(0), msg.sender, totalSupply); } function _msgSender() internal override view returns (address payable sender) { return ContextMixin.msgSender(); }}

Contract Security Audit

  • No Contract Security Audit Submitted- Submit Audit Here

Contract ABI

  • JSON Format
  • RAW/Text Format
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREDICATE_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":[],"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":"address","name":"userAddress","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"executeMetaTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"}],"name":"toTypedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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"}]

Contract Creation Code

Decompile Bytecode Switch to Opcodes View

60a06040526000805460ff191690553480156200001b57600080fd5b5060408051808201825260078152664d454d4520414960c81b6020808301919091528251808401845260068152654d454d45414960d01b8183015283516004815260248101855291820180516001600160e01b031663d93e194560e01b1781529351825193949193606093735828b9b43bb78174a5679890518f26bf96fccc6a939092918291908083835b60208310620000c75780518252601f199092019160209182019101620000a6565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146200012b576040519150601f19603f3d011682016040523d82523d6000602084013e62000130565b606091505b509150508080602001905160208110156200014a57600080fd5b505160601b6001600160601b0319166080525081516200017290600690602085019062000624565b5080516200018890600790602084019062000624565b50506008805460ff19166012179055506040805180820190915260068152654d454d45414960d01b6020820152620001c9906001600160e01b036200029616565b604080516d5052454449434154455f524f4c4560901b8152905190819003600e019020620002029060006001600160e01b036200033c16565b6040805180820190915260078152664d454d4520414960c81b602082015262000234906001600160e01b036200035116565b3360008181526003602090815260408083206b023ac12ef364587bf200000090819055600581905581518181529151909493927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a350620006c6565b806040516020018082805190602001908083835b60208310620002cb5780518252601f199092019160209182019101620002aa565b51815160209384036101000a60001901801990921691161790527f3a20494e53554646494349454e545f5045524d495353494f4e530000000000009190930190815260408051808303600519018152601a90920190528051620003389550600a9450920191905062000624565b5050565b6200033882826001600160e01b03620003bf16565b60005460ff16156200039b576040805162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015290519081900360640190fd5b620003af816001600160e01b036200044316565b506000805460ff19166001179055565b6000828152600960209081526040909120620003e69183906200129d6200050b821b17901c565b156200033857620003ff6001600160e01b036200053416565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6040518060800160405280604f815260200162001cc3604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc630620004ba6001600160e01b036200055116565b604080516020808201979097528082019590955260608501939093526001600160a01b03909116608084015260a0808401919091528151808403909101815260c09092019052805191012060015550565b60006200052b836001600160a01b0384166001600160e01b036200055516565b90505b92915050565b60006200054b620005ad60201b6200123f1760201c565b90505b90565b4690565b60006200056c83836001600160e01b036200060c16565b620005a4575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200052e565b5060006200052e565b600033301415620006075760606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200054e9050565b503390565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200066757805160ff191683800117855562000697565b8280016001018555821562000697579182015b82811115620006975782518255916020019190600101906200067a565b50620006a5929150620006a9565b5090565b6200054e91905b80821115620006a55760008155600101620006b0565b60805160601c6115d0620006f36000398061098b5280610adc5280610e3e5280610f8552506115d06000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806339509351116100de578063a217fddf11610097578063ca15c87311610071578063ca15c873146105ec578063d547741f14610609578063dd62ed3e14610635578063e72db5fd146106635761018e565b8063a217fddf1461058c578063a457c2d714610594578063a9059cbb146105c05761018e565b806339509351146103905780635a6dc75d146103bc57806370a08231146104f35780639010d07c1461051957806391d148541461055857806395d89b41146105845761018e565b806323b872dd1161014b5780632f2ff15d116101255780632f2ff15d14610310578063313ce5671461033e5780633408e4701461035c57806336568abe146103645761018e565b806323b872dd14610297578063248a9ca3146102cd5780632d0335ab146102ea5761018e565b806306fdde0314610193578063095ea7b3146102105780630f7e5970146102505780631034b1c01461025857806318160ddd1461028757806320379ee51461028f575b600080fd5b61019b61066b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610701565b604080519115158252519081900360200190f35b61019b61071f565b6102756004803603602081101561026e57600080fd5b503561073c565b60408051918252519081900360200190f35b610275610789565b61027561078f565b61023c600480360360608110156102ad57600080fd5b506001600160a01b03813581169160208101359091169060400135610795565b610275600480360360208110156102e357600080fd5b5035610822565b6102756004803603602081101561030057600080fd5b50356001600160a01b0316610837565b61033c6004803603604081101561032657600080fd5b50803590602001356001600160a01b0316610852565b005b6103466108be565b6040805160ff9092168252519081900360200190f35b6102756108c7565b61033c6004803603604081101561037a57600080fd5b50803590602001356001600160a01b03166108cb565b61023c600480360360408110156103a657600080fd5b506001600160a01b03813516906020013561092c565b61033c600480360360608110156103d257600080fd5b6001600160a01b0382351691908101906040810160208201356401000000008111156103fd57600080fd5b82018360208201111561040f57600080fd5b8035906020019184602083028401116401000000008311171561043157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561048157600080fd5b82018360208201111561049357600080fd5b803590602001918460208302840111640100000000831117156104b557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610980945050505050565b6102756004803603602081101561050957600080fd5b50356001600160a01b0316610ad7565b61053c6004803603604081101561052f57600080fd5b5080359060200135610ba6565b604080516001600160a01b039092168252519081900360200190f35b61023c6004803603604081101561056e57600080fd5b50803590602001356001600160a01b0316610bcb565b61019b610be9565b610275610c4a565b61023c600480360360408110156105aa57600080fd5b506001600160a01b038135169060200135610c4f565b61023c600480360360408110156105d657600080fd5b506001600160a01b038135169060200135610cbd565b6102756004803603602081101561060257600080fd5b5035610cd1565b61033c6004803603604081101561061f57600080fd5b50803590602001356001600160a01b0316610ce8565b6102756004803603604081101561064b57600080fd5b506001600160a01b0381358116916020013516610d41565b610275610d6c565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b600061071561070e610d92565b8484610da1565b5060015b92915050565b604051806040016040528060018152602001603160f81b81525081565b600061074661078f565b82604051602001808061190160f01b815250600201838152602001828152602001925050506040516020818303038152906040528051906020012090505b919050565b60055490565b60015490565b60006107a2848484610f24565b610818846107ae610d92565b610813856040518060600160405280602881526020016114fb602891396001600160a01b038a166000908152600460205260408120906107ec610d92565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61104416565b610da1565b5060019392505050565b60009081526009602052604090206002015490565b6001600160a01b031660009081526002602052604090205490565b60008281526009602052604090206002015461087590610870610d92565b610bcb565b6108b05760405162461bcd60e51b815260040180806020018281038252602f81526020018061147a602f913960400191505060405180910390fd5b6108ba82826110db565b5050565b60085460ff1690565b4690565b6108d3610d92565b6001600160a01b0316816001600160a01b0316146109225760405162461bcd60e51b815260040180806020018281038252602f81526020018061156c602f913960400191505060405180910390fd5b6108ba828261114a565b6000610715610939610d92565b84610813856004600061094a610d92565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6111b916565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109b557600080fd5b815181511415610a4a5760005b8251811015610a44578281815181106109d757fe5b60200260200101516001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef848481518110610a1f57fe5b60200260200101516040518082815260200191505060405180910390a36001016109c2565b50610ad2565b60005b8251811015610ad057828181518110610a6257fe5b60200260200101516001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600081518110610aab57fe5b60200260200101516040518082815260200191505060405180910390a3600101610a4d565b505b505050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316631034b1c0846001600160a01b031660001b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610b4a57600080fd5b505afa158015610b5e573d6000803e3d6000fd5b505050506040513d6020811015610b7457600080fd5b50519050600019811015610b89579050610784565b50506001600160a01b031660009081526003602052604090205490565b6000828152600960205260408120610bc4908363ffffffff61121316565b9392505050565b6000828152600960205260408120610bc4908363ffffffff61121f16565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106f75780601f106106cc576101008083540402835291602001916106f7565b600081565b6000610715610c5c610d92565b84610813856040518060600160405280602581526020016115476025913960046000610c86610d92565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61104416565b6000610715610cca610d92565b8484610f24565b600081815260096020526040812061071990611234565b600082815260096020526040902060020154610d0690610870610d92565b6109225760405162461bcd60e51b81526004018080602001828103825260308152602001806114cb6030913960400191505060405180910390fd5b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b604080516d5052454449434154455f524f4c4560901b8152905190819003600e01902081565b6000610d9c61123f565b905090565b6001600160a01b038316610de65760405162461bcd60e51b81526004018080602001828103825260248152602001806115236024913960400191505060405180910390fd5b6001600160a01b038216610e2b5760405162461bcd60e51b81526004018080602001828103825260228152602001806114a96022913960400191505060405180910390fd5b336001600160a01b0384161415610ec2577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633408e4706040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9557600080fd5b505afa158015610ea9573d6000803e3d6000fd5b505050506040513d6020811015610ebf57600080fd5b50505b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080516001600160a01b038581166024830152848116604483015260648201849052336084808401919091528351808403909101815260a490920183526020820180516001600160e01b031663521655b960e01b178152925182516000947f000000000000000000000000000000000000000000000000000000000000000093909316939282918083835b60208310610fcf5780518252601f199092019160209182019101610fb0565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611031576040519150601f19603f3d011682016040523d82523d6000602084013e611036565b606091505b5050905080610ad057600080fd5b600081848411156110d35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611098578181015183820152602001611080565b50505050905090810190601f1680156110c55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008281526009602052604090206110f9908263ffffffff61129d16565b156108ba57611106610d92565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600960205260409020611168908263ffffffff6112b216565b156108ba57611175610d92565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610bc4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610bc483836112c7565b6000610bc4836001600160a01b03841661132b565b600061071982611343565b6000333014156112975760606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061129a9050565b50335b90565b6000610bc4836001600160a01b038416611347565b6000610bc4836001600160a01b038416611391565b815460009082106113095760405162461bcd60e51b81526004018080602001828103825260228152602001806114586022913960400191505060405180910390fd5b82600001828154811061131857fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000611353838361132b565b61138957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610719565b506000610719565b6000818152600183016020526040812054801561144d57835460001980830191908101906000908790839081106113c457fe5b90600052602060002001549050808760000184815481106113e157fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061141157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610719565b600091505061071956fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a20617070726f766520746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212201d6a3ae27d438e008e36dc86e3cce15e21dc64156d68def7b4e9b6a2436b135064736f6c63430006060033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429


Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806339509351116100de578063a217fddf11610097578063ca15c87311610071578063ca15c873146105ec578063d547741f14610609578063dd62ed3e14610635578063e72db5fd146106635761018e565b8063a217fddf1461058c578063a457c2d714610594578063a9059cbb146105c05761018e565b806339509351146103905780635a6dc75d146103bc57806370a08231146104f35780639010d07c1461051957806391d148541461055857806395d89b41146105845761018e565b806323b872dd1161014b5780632f2ff15d116101255780632f2ff15d14610310578063313ce5671461033e5780633408e4701461035c57806336568abe146103645761018e565b806323b872dd14610297578063248a9ca3146102cd5780632d0335ab146102ea5761018e565b806306fdde0314610193578063095ea7b3146102105780630f7e5970146102505780631034b1c01461025857806318160ddd1461028757806320379ee51461028f575b600080fd5b61019b61066b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610701565b604080519115158252519081900360200190f35b61019b61071f565b6102756004803603602081101561026e57600080fd5b503561073c565b60408051918252519081900360200190f35b610275610789565b61027561078f565b61023c600480360360608110156102ad57600080fd5b506001600160a01b03813581169160208101359091169060400135610795565b610275600480360360208110156102e357600080fd5b5035610822565b6102756004803603602081101561030057600080fd5b50356001600160a01b0316610837565b61033c6004803603604081101561032657600080fd5b50803590602001356001600160a01b0316610852565b005b6103466108be565b6040805160ff9092168252519081900360200190f35b6102756108c7565b61033c6004803603604081101561037a57600080fd5b50803590602001356001600160a01b03166108cb565b61023c600480360360408110156103a657600080fd5b506001600160a01b03813516906020013561092c565b61033c600480360360608110156103d257600080fd5b6001600160a01b0382351691908101906040810160208201356401000000008111156103fd57600080fd5b82018360208201111561040f57600080fd5b8035906020019184602083028401116401000000008311171561043157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561048157600080fd5b82018360208201111561049357600080fd5b803590602001918460208302840111640100000000831117156104b557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610980945050505050565b6102756004803603602081101561050957600080fd5b50356001600160a01b0316610ad7565b61053c6004803603604081101561052f57600080fd5b5080359060200135610ba6565b604080516001600160a01b039092168252519081900360200190f35b61023c6004803603604081101561056e57600080fd5b50803590602001356001600160a01b0316610bcb565b61019b610be9565b610275610c4a565b61023c600480360360408110156105aa57600080fd5b506001600160a01b038135169060200135610c4f565b61023c600480360360408110156105d657600080fd5b506001600160a01b038135169060200135610cbd565b6102756004803603602081101561060257600080fd5b5035610cd1565b61033c6004803603604081101561061f57600080fd5b50803590602001356001600160a01b0316610ce8565b6102756004803603604081101561064b57600080fd5b506001600160a01b0381358116916020013516610d41565b610275610d6c565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b5050505050905090565b600061071561070e610d92565b8484610da1565b5060015b92915050565b604051806040016040528060018152602001603160f81b81525081565b600061074661078f565b82604051602001808061190160f01b815250600201838152602001828152602001925050506040516020818303038152906040528051906020012090505b919050565b60055490565b60015490565b60006107a2848484610f24565b610818846107ae610d92565b610813856040518060600160405280602881526020016114fb602891396001600160a01b038a166000908152600460205260408120906107ec610d92565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61104416565b610da1565b5060019392505050565b60009081526009602052604090206002015490565b6001600160a01b031660009081526002602052604090205490565b60008281526009602052604090206002015461087590610870610d92565b610bcb565b6108b05760405162461bcd60e51b815260040180806020018281038252602f81526020018061147a602f913960400191505060405180910390fd5b6108ba82826110db565b5050565b60085460ff1690565b4690565b6108d3610d92565b6001600160a01b0316816001600160a01b0316146109225760405162461bcd60e51b815260040180806020018281038252602f81526020018061156c602f913960400191505060405180910390fd5b6108ba828261114a565b6000610715610939610d92565b84610813856004600061094a610d92565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6111b916565b336001600160a01b037f000000000000000000000000a5017134c3a81d967abd41f2cecc226d8f4da2e116146109b557600080fd5b815181511415610a4a5760005b8251811015610a44578281815181106109d757fe5b60200260200101516001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef848481518110610a1f57fe5b60200260200101516040518082815260200191505060405180910390a36001016109c2565b50610ad2565b60005b8251811015610ad057828181518110610a6257fe5b60200260200101516001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600081518110610aab57fe5b60200260200101516040518082815260200191505060405180910390a3600101610a4d565b505b505050565b6000807f000000000000000000000000a5017134c3a81d967abd41f2cecc226d8f4da2e16001600160a01b0316631034b1c0846001600160a01b031660001b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610b4a57600080fd5b505afa158015610b5e573d6000803e3d6000fd5b505050506040513d6020811015610b7457600080fd5b50519050600019811015610b89579050610784565b50506001600160a01b031660009081526003602052604090205490565b6000828152600960205260408120610bc4908363ffffffff61121316565b9392505050565b6000828152600960205260408120610bc4908363ffffffff61121f16565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106f75780601f106106cc576101008083540402835291602001916106f7565b600081565b6000610715610c5c610d92565b84610813856040518060600160405280602581526020016115476025913960046000610c86610d92565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61104416565b6000610715610cca610d92565b8484610f24565b600081815260096020526040812061071990611234565b600082815260096020526040902060020154610d0690610870610d92565b6109225760405162461bcd60e51b81526004018080602001828103825260308152602001806114cb6030913960400191505060405180910390fd5b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b604080516d5052454449434154455f524f4c4560901b8152905190819003600e01902081565b6000610d9c61123f565b905090565b6001600160a01b038316610de65760405162461bcd60e51b81526004018080602001828103825260248152602001806115236024913960400191505060405180910390fd5b6001600160a01b038216610e2b5760405162461bcd60e51b81526004018080602001828103825260228152602001806114a96022913960400191505060405180910390fd5b336001600160a01b0384161415610ec2577f000000000000000000000000a5017134c3a81d967abd41f2cecc226d8f4da2e16001600160a01b0316633408e4706040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9557600080fd5b505afa158015610ea9573d6000803e3d6000fd5b505050506040513d6020811015610ebf57600080fd5b50505b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080516001600160a01b038581166024830152848116604483015260648201849052336084808401919091528351808403909101815260a490920183526020820180516001600160e01b031663521655b960e01b178152925182516000947f000000000000000000000000a5017134c3a81d967abd41f2cecc226d8f4da2e193909316939282918083835b60208310610fcf5780518252601f199092019160209182019101610fb0565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611031576040519150601f19603f3d011682016040523d82523d6000602084013e611036565b606091505b5050905080610ad057600080fd5b600081848411156110d35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611098578181015183820152602001611080565b50505050905090810190601f1680156110c55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008281526009602052604090206110f9908263ffffffff61129d16565b156108ba57611106610d92565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600960205260409020611168908263ffffffff6112b216565b156108ba57611175610d92565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610bc4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610bc483836112c7565b6000610bc4836001600160a01b03841661132b565b600061071982611343565b6000333014156112975760606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061129a9050565b50335b90565b6000610bc4836001600160a01b038416611347565b6000610bc4836001600160a01b038416611391565b815460009082106113095760405162461bcd60e51b81526004018080602001828103825260228152602001806114586022913960400191505060405180910390fd5b82600001828154811061131857fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000611353838361132b565b61138957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610719565b506000610719565b6000818152600183016020526040812054801561144d57835460001980830191908101906000908790839081106113c457fe5b90600052602060002001549050808760000184815481106113e157fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061141157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610719565b600091505061071956fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a20617070726f766520746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212201d6a3ae27d438e008e36dc86e3cce15e21dc64156d68def7b4e9b6a2436b135064736f6c63430006060033

Deployed Bytecode Sourcemap

51462:742:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51462:742:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;18283:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18283:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20611:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20611:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;389:43;;;:::i;2285:256::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;2285:256:0;;:::i;:::-;;;;;;;;;;;;;;;;19382:108;;;:::i;1393:101::-;;;:::i;21262:332::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21262:332:0;;;;;;;;;;;;;;;;;:::i;47833:114::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47833:114:0;;:::i;4689:107::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;4689:107:0;-1:-1:-1;;;;;4689:107:0;;:::i;48209:227::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48209:227:0;;;;;;-1:-1:-1;;;;;48209:227:0;;:::i;:::-;;19226:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1502:161;;;:::i;49418:209::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;49418:209:0;;;;;;-1:-1:-1;;;;;49418:209:0;;:::i;22003:218::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;22003:218:0;;;;;;;;:::i;3736:527::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;3736:527:0;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;3736:527:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;3736:527:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3736:527:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;3736:527:0;;;;;;;;-1:-1:-1;3736:527:0;;-1:-1:-1;;27:11;11:28;;8:2;;;52:1;49;42:12;8:2;3736:527:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;3736:527:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3736:527:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;3736:527:0;;-1:-1:-1;3736:527:0;;-1:-1:-1;;;;;3736:527:0:i;19553:298::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19553:298:0;-1:-1:-1;;;;;19553:298:0;;:::i;47506:138::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47506:138:0;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;47506:138:0;;;;;;;;;;;;;;46467:139;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46467:139:0;;;;;;-1:-1:-1;;;;;46467:139:0;;:::i;18493:95::-;;;:::i;45212:49::-;;;:::i;22724:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;22724:269:0;;;;;;;;:::i;20064:186::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20064:186:0;;;;;;;;:::i;46780:127::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46780:127:0;;:::i;48681:230::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48681:230:0;;;;;;-1:-1:-1;;;;;48681:230:0;;:::i;20313:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20313:151:0;;;;;;;;;;:::i;51544:68::-;;;:::i;18283:91::-;18361:5;18354:12;;;;;;;;-1:-1:-1;;18354:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18328:13;;18354:12;;18361:5;;18354:12;;18361:5;18354:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18283:91;:::o;20611:169::-;20694:4;20711:39;20720:12;:10;:12::i;:::-;20734:7;20743:6;20711:8;:39::i;:::-;-1:-1:-1;20768:4:0;20611:169;;;;;:::o;389:43::-;;;;;;;;;;;;;;-1:-1:-1;;;389:43:0;;;;:::o;2285:256::-;2382:7;2484:20;:18;:20::i;:::-;2506:11;2455:63;;;;;;-1:-1:-1;;;2455:63:0;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;2455:63:0;;;2427:106;;;;;;2407:126;;2285:256;;;;:::o;19382:108::-;19470:12;;19382:108;:::o;1393:101::-;1471:15;;1393:101;:::o;21262:332::-;21368:4;21385:47;21406:6;21414:9;21425:6;21385:20;:47::i;:::-;21443:121;21452:6;21460:12;:10;:12::i;:::-;21474:89;21512:6;21474:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21474:19:0;;;;;;:11;:19;;;;;;21494:12;:10;:12::i;:::-;-1:-1:-1;;;;;21474:33:0;;;;;;;;;;;;-1:-1:-1;21474:33:0;;;:89;;:37;:89;:::i;:::-;21443:8;:121::i;:::-;-1:-1:-1;21582:4:0;21262:332;;;;;:::o;47833:114::-;47890:7;47917:12;;;:6;:12;;;;;:22;;;;47833:114::o;4689:107::-;-1:-1:-1;;;;;4776:12:0;4742:13;4776:12;;;:6;:12;;;;;;;4689:107::o;48209:227::-;48301:12;;;;:6;:12;;;;;:22;;;48293:45;;48325:12;:10;:12::i;:::-;48293:7;:45::i;:::-;48285:105;;;;-1:-1:-1;;;48285:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48403:25;48414:4;48420:7;48403:10;:25::i;:::-;48209:227;;:::o;19226:91::-;19300:9;;;;19226:91;:::o;1502:161::-;1616:9;1502:161;:::o;49418:209::-;49516:12;:10;:12::i;:::-;-1:-1:-1;;;;;49505:23:0;:7;-1:-1:-1;;;;;49505:23:0;;49497:83;;;;-1:-1:-1;;;49497:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49593:26;49605:4;49611:7;49593:11;:26::i;22003:218::-;22091:4;22108:83;22117:12;:10;:12::i;:::-;22131:7;22140:50;22179:10;22140:11;:25;22152:12;:10;:12::i;:::-;-1:-1:-1;;;;;22140:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22140:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;3736:527::-;3904:10;-1:-1:-1;;;;;3926:11:0;3904:34;;3896:43;;12:1:-1;9;2:12;3896:43:0;3972:10;:17;3954:7;:14;:35;3950:305;;;4005:13;4000:121;4032:10;:17;4024:5;:25;4000:121;;;4087:10;4098:5;4087:17;;;;;;;;;;;;;;-1:-1:-1;;;;;4065:56:0;4074:11;-1:-1:-1;;;;;4065:56:0;;4106:7;4114:5;4106:14;;;;;;;;;;;;;;4065:56;;;;;;;;;;;;;;;;;;4051:7;;4000:121;;;;3950:305;;;4143:13;4138:117;4170:10;:17;4162:5;:25;4138:117;;;4225:10;4236:5;4225:17;;;;;;;;;;;;;;-1:-1:-1;;;;;4203:52:0;4212:11;-1:-1:-1;;;;;4203:52:0;;4244:7;4252:1;4244:10;;;;;;;;;;;;;;4203:52;;;;;;;;;;;;;;;;;;4189:7;;4138:117;;;;3950:305;3736:527;;;:::o;19553:298::-;19627:7;19647:20;19670:11;-1:-1:-1;;;;;19670:30:0;;19725:7;-1:-1:-1;;;;;19709:25:0;19701:34;;19670:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19670:66:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19670:66:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19670:66:0;;-1:-1:-1;;;19742:35:0;;19738:69;;;19794:12;-1:-1:-1;19779:28:0;;19738:69;-1:-1:-1;;;;;;;19825:18:0;;;;;:9;:18;;;;;;;19553:298::o;47506:138::-;47579:7;47606:12;;;:6;:12;;;;;:30;;47630:5;47606:30;:23;:30;:::i;:::-;47599:37;47506:138;-1:-1:-1;;;47506:138:0:o;46467:139::-;46536:4;46560:12;;;:6;:12;;;;;:38;;46590:7;46560:38;:29;:38;:::i;18493:95::-;18573:7;18566:14;;;;;;;;-1:-1:-1;;18566:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18540:13;;18566:14;;18573:7;;18566:14;;18573:7;18566:14;;;;;;;;;;;;;;;;;;;;;;;;45212:49;45257:4;45212:49;:::o;22724:269::-;22817:4;22834:129;22843:12;:10;:12::i;:::-;22857:7;22866:96;22905:15;22866:96;;;;;;;;;;;;;;;;;:11;:25;22878:12;:10;:12::i;:::-;-1:-1:-1;;;;;22866:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22866:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;20064:186::-;20150:4;20167:53;20188:12;:10;:12::i;:::-;20202:9;20213:6;20167:20;:53::i;46780:127::-;46843:7;46870:12;;;:6;:12;;;;;:29;;:27;:29::i;48681:230::-;48774:12;;;;:6;:12;;;;;:22;;;48766:45;;48798:12;:10;:12::i;48766:45::-;48758:106;;;;-1:-1:-1;;;48758:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20313:151;-1:-1:-1;;;;;20429:18:0;;;20402:7;20429:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20313:151::o;51544:68::-;51585:27;;;-1:-1:-1;;;51585:27:0;;;;;;;;;;;;51544:68;:::o;52032:169::-;52122:22;52169:24;:22;:24::i;:::-;52162:31;;52032:169;:::o;24460:406::-;-1:-1:-1;;;;;24562:19:0;;24554:68;;;;-1:-1:-1;;;24554:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24641:21:0;;24633:68;;;;-1:-1:-1;;;24633:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24716:10;-1:-1:-1;;;;;24716:19:0;;;24712:49;;;24737:11;-1:-1:-1;;;;;24737:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24737:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24737:24:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;24712:49:0;-1:-1:-1;;;;;24774:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24826:32;;;;;;;;;;;;;;;;;24460:406;;;:::o;25888:209::-;26017:64;;;-1:-1:-1;;;;;26017:64:0;;;;;;;;;;;;;;;;;;;;26070:10;26017:64;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;26017:64:0;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;25991:91:0;;;;25980:6;;25999:11;25991:25;;;;;26017:64;25991:91;;;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;25991:91:0;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;25979:103:0;;;26092:1;26084:10;;12:1:-1;9;2:12;14382:166:0;14468:7;14504:12;14496:6;;;;14488:29;;;;-1:-1:-1;;;14488:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14488:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14535:5:0;;;14382:166::o;50661:188::-;50735:12;;;;:6;:12;;;;;:33;;50760:7;50735:33;:24;:33;:::i;:::-;50731:111;;;50817:12;:10;:12::i;:::-;-1:-1:-1;;;;;50790:40:0;50808:7;-1:-1:-1;;;;;50790:40:0;50802:4;50790:40;;;;;;;;;;50661:188;;:::o;50857:192::-;50932:12;;;;:6;:12;;;;;:36;;50960:7;50932:36;:27;:36;:::i;:::-;50928:114;;;51017:12;:10;:12::i;:::-;-1:-1:-1;;;;;50990:40:0;51008:7;-1:-1:-1;;;;;50990:40:0;51002:4;50990:40;;;;;;;;;;50857:192;;:::o;11555:179::-;11613:7;11645:5;;;11669:6;;;;11661:46;;;;;-1:-1:-1;;;11661:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34827:158;34901:7;34952:22;34956:3;34968:5;34952:3;:22::i;34113:167::-;34193:4;34217:55;34227:3;-1:-1:-1;;;;;34247:23:0;;34217:9;:55::i;34366:117::-;34429:7;34456:19;34464:3;34456:7;:19::i;26168:641::-;26239:22;26283:10;26305:4;26283:27;26279:499;;;26327:18;26348:8;;26327:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;26387:8:0;26598:17;26592:24;-1:-1:-1;;;;;26566:134:0;;-1:-1:-1;26426:289:0;;-1:-1:-1;26426:289:0;;-1:-1:-1;26756:10:0;26279:499;26168:641;:::o;33541:152::-;33611:4;33635:50;33640:3;-1:-1:-1;;;;;33660:23:0;;33635:4;:50::i;33869:158::-;33942:4;33966:53;33974:3;-1:-1:-1;;;;;33994:23:0;;33966:7;:53::i;31493:204::-;31588:18;;31560:7;;31588:26;-1:-1:-1;31580:73:0;;;;-1:-1:-1;;;31580:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31671:3;:11;;31683:5;31671:18;;;;;;;;;;;;;;;;31664:25;;31493:204;;;;:::o;30825:129::-;30898:4;30922:19;;;:12;;;;;:19;;;;;;:24;;;30825:129::o;31040:109::-;31123:18;;31040:109::o;28605:414::-;28668:4;28690:21;28700:3;28705:5;28690:9;:21::i;:::-;28685:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;28728:11:0;:23;;;;;;;;;;;;;28911:18;;28889:19;;;:12;;;:19;;;;;;:40;;;;28944:11;;28685:327;-1:-1:-1;28995:5:0;28988:12;;29195:1544;29261:4;29400:19;;;:12;;;:19;;;;;;29436:15;;29432:1300;;29871:18;;-1:-1:-1;;29822:14:0;;;;29871:22;;;;29798:21;;29871:3;;:22;;30158;;;;;;;;;;;;;;30138:42;;30304:9;30275:3;:11;;30287:13;30275:26;;;;;;;;;;;;;;;;;;;:38;;;;30381:23;;;30423:1;30381:12;;;:23;;;;;;30407:17;;;30381:43;;30533:17;;30381:3;;30533:17;;;;;;;;;;;;;;;;;;;;;;30628:3;:12;;:19;30641:5;30628:19;;;;;;;;;;;30621:26;;;30671:4;30664:11;;;;;;;;29432:1300;30715:5;30708:12;;;;

Swarm Source

ipfs://1d6a3ae27d438e008e36dc86e3cce15e21dc64156d68def7b4e9b6a2436b1350

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.

Connect a Wallet
Connect a Wallet

Compiler specific version warnings:

The compiled contract might be susceptible to MissingSideEffectsOnSelectorAccess (low-severity), AbiReencodingHeadOverflowWithStaticArrayCleanup (medium-severity), DirtyBytesArrayToStorage (low-severity), NestedCalldataArrayAbiReencodingSizeValidation (very low-severity), SignedImmutables (very low-severity), ABIDecodeTwoDimensionalArrayMemory (very low-severity), KeccakCaching (medium-severity), EmptyByteArrayCopy (medium-severity), DynamicArrayCleanup (medium-severity), MissingEscapingInFormatting (very low-severity), ArraySliceDynamicallyEncodedBaseType (very low-severity), ImplicitConstructorCallvalueCheck (very low-severity) Solidity Compiler Bugs.

MEME AI (MEMEAI) Token Tracker | BscScan (2024)
Top Articles
Latest Posts
Article information

Author: Moshe Kshlerin

Last Updated:

Views: 5921

Rating: 4.7 / 5 (77 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Moshe Kshlerin

Birthday: 1994-01-25

Address: Suite 609 315 Lupita Unions, Ronnieburgh, MI 62697

Phone: +2424755286529

Job: District Education Designer

Hobby: Yoga, Gunsmithing, Singing, 3D printing, Nordic skating, Soapmaking, Juggling

Introduction: My name is Moshe Kshlerin, I am a gleaming, attractive, outstanding, pleasant, delightful, outstanding, famous person who loves writing and wants to share my knowledge and understanding with you.