BscScan - Sponsored slots available. Book your slot here!
BEP-20
Overview
Max Total Supply
117,000,000,000ACR
Holders
13,754
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
106 ACRValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
ERC20
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.3.2 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address public _owner; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_, address owner_, address fundraiser){ _name = name_; _symbol = symbol_; _owner = owner_; // _mint(airdrop, 300000000000 * (10 ** uint256(decimals()))); _mint(fundraiser, 117000000000 * (10 ** uint256(decimals()))); // _mint(liquidity, 600000000000 * (10 ** uint256(decimals()))); } modifier onlyOwner() { require(msg.sender == _owner); _; } function transferOwnership(address newOwner) onlyOwner public { if (newOwner != address(0)) { _owner = newOwner; } } function removeOwnership() onlyOwner public { _owner = 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 value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"fundraiser","type":"address"}],"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":"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":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":[],"name":"removeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001f9838038062001f988339818101604052810190620000379190620003c9565b83600390805190602001906200004f92919062000284565b5082600490805190602001906200006892919062000284565b5081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000ee81620000bf620000f860201b60201c565b60ff16600a620000d0919062000618565b641b3dbe5200620000e2919062000755565b6200010160201b60201c565b5050505062000998565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016b90620004b1565b60405180910390fd5b62000188600083836200027a60201b60201c565b80600260008282546200019c919062000560565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f3919062000560565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025a9190620004d3565b60405180910390a362000276600083836200027f60201b60201c565b5050565b505050565b505050565b82805462000292906200082a565b90600052602060002090601f016020900481019282620002b6576000855562000302565b82601f10620002d157805160ff191683800117855562000302565b8280016001018555821562000302579182015b8281111562000301578251825591602001919060010190620002e4565b5b50905062000311919062000315565b5090565b5b808211156200033057600081600090555060010162000316565b5090565b60006200034b620003458462000519565b620004f0565b9050828152602081018484840111156200036a576200036962000928565b5b62000377848285620007f4565b509392505050565b60008151905062000390816200097e565b92915050565b600082601f830112620003ae57620003ad62000923565b5b8151620003c084826020860162000334565b91505092915050565b60008060008060808587031215620003e657620003e562000932565b5b600085015167ffffffffffffffff8111156200040757620004066200092d565b5b620004158782880162000396565b945050602085015167ffffffffffffffff8111156200043957620004386200092d565b5b620004478782880162000396565b93505060406200045a878288016200037f565b92505060606200046d878288016200037f565b91505092959194509250565b600062000488601f836200054f565b9150620004958262000955565b602082019050919050565b620004ab81620007ea565b82525050565b60006020820190508181036000830152620004cc8162000479565b9050919050565b6000602082019050620004ea6000830184620004a0565b92915050565b6000620004fc6200050f565b90506200050a828262000860565b919050565b6000604051905090565b600067ffffffffffffffff821115620005375762000536620008f4565b5b620005428262000937565b9050602081019050919050565b600082825260208201905092915050565b60006200056d82620007ea565b91506200057a83620007ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005b257620005b162000896565b5b828201905092915050565b6000808291508390505b60018511156200060f57808604811115620005e757620005e662000896565b5b6001851615620005f75780820291505b8081029050620006078562000948565b9450620005c7565b94509492505050565b60006200062582620007ea565b91506200063283620007ea565b9250620006617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000669565b905092915050565b6000826200067b57600190506200074e565b816200068b57600090506200074e565b8160018114620006a45760028114620006af57620006e5565b60019150506200074e565b60ff841115620006c457620006c362000896565b5b8360020a915084821115620006de57620006dd62000896565b5b506200074e565b5060208310610133831016604e8410600b84101617156200071f5782820a90508381111562000719576200071862000896565b5b6200074e565b6200072e8484846001620005bd565b9250905081840481111562000748576200074762000896565b5b81810290505b9392505050565b60006200076282620007ea565b91506200076f83620007ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007ab57620007aa62000896565b5b828202905092915050565b6000620007c382620007ca565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000814578082015181840152602081019050620007f7565b8381111562000824576000848401525b50505050565b600060028204905060018216806200084357607f821691505b602082108114156200085a5762000859620008c5565b5b50919050565b6200086b8262000937565b810181811067ffffffffffffffff821117156200088d576200088c620008f4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200098981620007b6565b81146200099557600080fd5b50565b6115f080620009a86000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b2bdfa7b11610066578063b2bdfa7b14610287578063d99bb9f7146102a5578063dd62ed3e146102af578063f2fde38b146102df576100ea565b806395d89b4114610209578063a457c2d714610227578063a9059cbb14610257576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061108b565b60405180910390f35b61012760048036038101906101229190610eab565b61038d565b6040516101349190611070565b60405180910390f35b6101456103ab565b604051610152919061118d565b60405180910390f35b61017560048036038101906101709190610e58565b6103b5565b6040516101829190611070565b60405180910390f35b6101936104ad565b6040516101a091906111a8565b60405180910390f35b6101c360048036038101906101be9190610eab565b6104b6565b6040516101d09190611070565b60405180910390f35b6101f360048036038101906101ee9190610deb565b610562565b604051610200919061118d565b60405180910390f35b6102116105aa565b60405161021e919061108b565b60405180910390f35b610241600480360381019061023c9190610eab565b61063c565b60405161024e9190611070565b60405180910390f35b610271600480360381019061026c9190610eab565b610727565b60405161027e9190611070565b60405180910390f35b61028f610745565b60405161029c9190611055565b60405180910390f35b6102ad61076b565b005b6102c960048036038101906102c49190610e18565b610809565b6040516102d6919061118d565b60405180910390f35b6102f960048036038101906102f49190610deb565b610890565b005b60606003805461030a906112bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906112bd565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610963565b848461096b565b6001905092915050565b6000600254905090565b60006103c2848484610b36565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061040d610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561048d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104849061110d565b60405180910390fd5b6104a185610499610963565b85840361096b565b60019150509392505050565b60006012905090565b60006105586104c3610963565b8484600160006104d1610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055391906111df565b61096b565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105b9906112bd565b80601f01602080910402602001604051908101604052809291908181526020018280546105e5906112bd565b80156106325780601f1061060757610100808354040283529160200191610632565b820191906000526020600020905b81548152906001019060200180831161061557829003601f168201915b5050505050905090565b6000806001600061064b610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff9061116d565b60405180910390fd5b61071c610713610963565b8585840361096b565b600191505092915050565b600061073b610734610963565b8484610b36565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107c557600080fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ea57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109605780600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d29061114d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906110cd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b29919061118d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d9061112d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d906110ad565b60405180910390fd5b610c21838383610db7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906110ed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d3a91906111df565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d9e919061118d565b60405180910390a3610db1848484610dbc565b50505050565b505050565b505050565b600081359050610dd08161158c565b92915050565b600081359050610de5816115a3565b92915050565b600060208284031215610e0157610e0061134d565b5b6000610e0f84828501610dc1565b91505092915050565b60008060408385031215610e2f57610e2e61134d565b5b6000610e3d85828601610dc1565b9250506020610e4e85828601610dc1565b9150509250929050565b600080600060608486031215610e7157610e7061134d565b5b6000610e7f86828701610dc1565b9350506020610e9086828701610dc1565b9250506040610ea186828701610dd6565b9150509250925092565b60008060408385031215610ec257610ec161134d565b5b6000610ed085828601610dc1565b9250506020610ee185828601610dd6565b9150509250929050565b610ef481611235565b82525050565b610f0381611247565b82525050565b6000610f14826111c3565b610f1e81856111ce565b9350610f2e81856020860161128a565b610f3781611352565b840191505092915050565b6000610f4f6023836111ce565b9150610f5a82611363565b604082019050919050565b6000610f726022836111ce565b9150610f7d826113b2565b604082019050919050565b6000610f956026836111ce565b9150610fa082611401565b604082019050919050565b6000610fb86028836111ce565b9150610fc382611450565b604082019050919050565b6000610fdb6025836111ce565b9150610fe68261149f565b604082019050919050565b6000610ffe6024836111ce565b9150611009826114ee565b604082019050919050565b60006110216025836111ce565b915061102c8261153d565b604082019050919050565b61104081611273565b82525050565b61104f8161127d565b82525050565b600060208201905061106a6000830184610eeb565b92915050565b60006020820190506110856000830184610efa565b92915050565b600060208201905081810360008301526110a58184610f09565b905092915050565b600060208201905081810360008301526110c681610f42565b9050919050565b600060208201905081810360008301526110e681610f65565b9050919050565b6000602082019050818103600083015261110681610f88565b9050919050565b6000602082019050818103600083015261112681610fab565b9050919050565b6000602082019050818103600083015261114681610fce565b9050919050565b6000602082019050818103600083015261116681610ff1565b9050919050565b6000602082019050818103600083015261118681611014565b9050919050565b60006020820190506111a26000830184611037565b92915050565b60006020820190506111bd6000830184611046565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111ea82611273565b91506111f583611273565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561122a576112296112ef565b5b828201905092915050565b600061124082611253565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112a857808201518184015260208101905061128d565b838111156112b7576000848401525b50505050565b600060028204905060018216806112d557607f821691505b602082108114156112e9576112e861131e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61159581611235565b81146115a057600080fd5b50565b6115ac81611273565b81146115b757600080fd5b5056fea264697066735822122003339fabd1d1747107e2ef671e36e2ac35f5dc677b1f5657da10a436dd9e2eeb64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000bb1bf377f5477270e9bbfbc9a99ae1ef6b9c48fd0000000000000000000000003995cb920930c52a8de66a42a0822bbfb6047e0b0000000000000000000000000000000000000000000000000000000000000005416361726100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034143520000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b2bdfa7b11610066578063b2bdfa7b14610287578063d99bb9f7146102a5578063dd62ed3e146102af578063f2fde38b146102df576100ea565b806395d89b4114610209578063a457c2d714610227578063a9059cbb14610257576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061108b565b60405180910390f35b61012760048036038101906101229190610eab565b61038d565b6040516101349190611070565b60405180910390f35b6101456103ab565b604051610152919061118d565b60405180910390f35b61017560048036038101906101709190610e58565b6103b5565b6040516101829190611070565b60405180910390f35b6101936104ad565b6040516101a091906111a8565b60405180910390f35b6101c360048036038101906101be9190610eab565b6104b6565b6040516101d09190611070565b60405180910390f35b6101f360048036038101906101ee9190610deb565b610562565b604051610200919061118d565b60405180910390f35b6102116105aa565b60405161021e919061108b565b60405180910390f35b610241600480360381019061023c9190610eab565b61063c565b60405161024e9190611070565b60405180910390f35b610271600480360381019061026c9190610eab565b610727565b60405161027e9190611070565b60405180910390f35b61028f610745565b60405161029c9190611055565b60405180910390f35b6102ad61076b565b005b6102c960048036038101906102c49190610e18565b610809565b6040516102d6919061118d565b60405180910390f35b6102f960048036038101906102f49190610deb565b610890565b005b60606003805461030a906112bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906112bd565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610963565b848461096b565b6001905092915050565b6000600254905090565b60006103c2848484610b36565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061040d610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561048d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104849061110d565b60405180910390fd5b6104a185610499610963565b85840361096b565b60019150509392505050565b60006012905090565b60006105586104c3610963565b8484600160006104d1610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055391906111df565b61096b565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105b9906112bd565b80601f01602080910402602001604051908101604052809291908181526020018280546105e5906112bd565b80156106325780601f1061060757610100808354040283529160200191610632565b820191906000526020600020905b81548152906001019060200180831161061557829003601f168201915b5050505050905090565b6000806001600061064b610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff9061116d565b60405180910390fd5b61071c610713610963565b8585840361096b565b600191505092915050565b600061073b610734610963565b8484610b36565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107c557600080fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ea57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109605780600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d29061114d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906110cd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b29919061118d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d9061112d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d906110ad565b60405180910390fd5b610c21838383610db7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906110ed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d3a91906111df565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d9e919061118d565b60405180910390a3610db1848484610dbc565b50505050565b505050565b505050565b600081359050610dd08161158c565b92915050565b600081359050610de5816115a3565b92915050565b600060208284031215610e0157610e0061134d565b5b6000610e0f84828501610dc1565b91505092915050565b60008060408385031215610e2f57610e2e61134d565b5b6000610e3d85828601610dc1565b9250506020610e4e85828601610dc1565b9150509250929050565b600080600060608486031215610e7157610e7061134d565b5b6000610e7f86828701610dc1565b9350506020610e9086828701610dc1565b9250506040610ea186828701610dd6565b9150509250925092565b60008060408385031215610ec257610ec161134d565b5b6000610ed085828601610dc1565b9250506020610ee185828601610dd6565b9150509250929050565b610ef481611235565b82525050565b610f0381611247565b82525050565b6000610f14826111c3565b610f1e81856111ce565b9350610f2e81856020860161128a565b610f3781611352565b840191505092915050565b6000610f4f6023836111ce565b9150610f5a82611363565b604082019050919050565b6000610f726022836111ce565b9150610f7d826113b2565b604082019050919050565b6000610f956026836111ce565b9150610fa082611401565b604082019050919050565b6000610fb86028836111ce565b9150610fc382611450565b604082019050919050565b6000610fdb6025836111ce565b9150610fe68261149f565b604082019050919050565b6000610ffe6024836111ce565b9150611009826114ee565b604082019050919050565b60006110216025836111ce565b915061102c8261153d565b604082019050919050565b61104081611273565b82525050565b61104f8161127d565b82525050565b600060208201905061106a6000830184610eeb565b92915050565b60006020820190506110856000830184610efa565b92915050565b600060208201905081810360008301526110a58184610f09565b905092915050565b600060208201905081810360008301526110c681610f42565b9050919050565b600060208201905081810360008301526110e681610f65565b9050919050565b6000602082019050818103600083015261110681610f88565b9050919050565b6000602082019050818103600083015261112681610fab565b9050919050565b6000602082019050818103600083015261114681610fce565b9050919050565b6000602082019050818103600083015261116681610ff1565b9050919050565b6000602082019050818103600083015261118681611014565b9050919050565b60006020820190506111a26000830184611037565b92915050565b60006020820190506111bd6000830184611046565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111ea82611273565b91506111f583611273565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561122a576112296112ef565b5b828201905092915050565b600061124082611253565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112a857808201518184015260208101905061128d565b838111156112b7576000848401525b50505050565b600060028204905060018216806112d557607f821691505b602082108114156112e9576112e861131e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61159581611235565b81146115a057600080fd5b50565b6115ac81611273565b81146115b757600080fd5b5056fea264697066735822122003339fabd1d1747107e2ef671e36e2ac35f5dc677b1f5657da10a436dd9e2eeb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000bb1bf377f5477270e9bbfbc9a99ae1ef6b9c48fd0000000000000000000000003995cb920930c52a8de66a42a0822bbfb6047e0b0000000000000000000000000000000000000000000000000000000000000005416361726100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034143520000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Acara
Arg [1] : symbol_ (string): ACR
Arg [2] : owner_ (address): 0xbB1BF377f5477270E9BBFbC9A99ae1EF6B9C48fD
Arg [3] : fundraiser (address): 0x3995cb920930c52a8dE66a42a0822BBfb6047e0B
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000bb1bf377f5477270e9bbfbc9a99ae1ef6b9c48fd
Arg [3] : 0000000000000000000000003995cb920930c52a8de66a42a0822bbfb6047e0b
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4163617261000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4143520000000000000000000000000000000000000000000000000000000000
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.