Token
ERC-20: Free airdrop (https://arbinu.space/)
ERC-20
Overview
Max Total Supply
114,203,140.398944 https://arbinu.space/
Holders
1,094
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
50,928.073519 https://arbinu.space/Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Reward
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Reward is ERC20 { constructor() ERC20("Free airdrop", "https://arbinu.space/") {} function airdrop( address[] memory receivers, uint256[] memory amounts ) public { for (uint256 i = 0; i < receivers.length; i++) { _mint(receivers[i], amounts[i]); } } function decimals() public view override returns (uint8) { return 6; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the 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 = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"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
608060405234801562000010575f80fd5b506040518060400160405280600c81526020017f467265652061697264726f7000000000000000000000000000000000000000008152506040518060400160405280601581526020017f68747470733a2f2f617262696e752e73706163652f000000000000000000000081525081600390816200008e91906200030d565b508060049081620000a091906200030d565b505050620003f1565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200012557607f821691505b6020821081036200013b576200013a620000e0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200019f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000162565b620001ab868362000162565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620001f5620001ef620001e984620001c3565b620001cc565b620001c3565b9050919050565b5f819050919050565b6200021083620001d5565b620002286200021f82620001fc565b8484546200016e565b825550505050565b5f90565b6200023e62000230565b6200024b81848462000205565b505050565b5b818110156200027257620002665f8262000234565b60018101905062000251565b5050565b601f821115620002c1576200028b8162000141565b620002968462000153565b81016020851015620002a6578190505b620002be620002b58562000153565b83018262000250565b50505b505050565b5f82821c905092915050565b5f620002e35f1984600802620002c6565b1980831691505092915050565b5f620002fd8383620002d2565b9150826002028217905092915050565b6200031882620000a9565b67ffffffffffffffff811115620003345762000333620000b3565b5b6200034082546200010d565b6200034d82828562000276565b5f60209050601f83116001811462000383575f84156200036e578287015190505b6200037a8582620002f0565b865550620003e9565b601f198416620003938662000141565b5f5b82811015620003bc5784890151825560018201915060208501945060208101905062000395565b86831015620003dc5784890151620003d8601f891682620002d2565b8355505b6001600288020188555050505b505050505050565b6116f880620003ff5f395ff3fe608060405234801561000f575f80fd5b50600436106100b2575f3560e01c8063672434821161006f57806367243482146101a057806370a08231146101bc57806395d89b41146101ec578063a457c2d71461020a578063a9059cbb1461023a578063dd62ed3e1461026a576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce567146101525780633950935114610170575b5f80fd5b6100be61029a565b6040516100cb9190610cb3565b60405180910390f35b6100ee60048036038101906100e99190610d71565b61032a565b6040516100fb9190610dc9565b60405180910390f35b61010c61034c565b6040516101199190610df1565b60405180910390f35b61013c60048036038101906101379190610e0a565b610355565b6040516101499190610dc9565b60405180910390f35b61015a610383565b6040516101679190610e75565b60405180910390f35b61018a60048036038101906101859190610d71565b61038b565b6040516101979190610dc9565b60405180910390f35b6101ba60048036038101906101b5919061108e565b6103c1565b005b6101d660048036038101906101d19190611104565b610422565b6040516101e39190610df1565b60405180910390f35b6101f4610467565b6040516102019190610cb3565b60405180910390f35b610224600480360381019061021f9190610d71565b6104f7565b6040516102319190610dc9565b60405180910390f35b610254600480360381019061024f9190610d71565b61056c565b6040516102619190610dc9565b60405180910390f35b610284600480360381019061027f919061112f565b61058e565b6040516102919190610df1565b60405180910390f35b6060600380546102a99061119a565b80601f01602080910402602001604051908101604052809291908181526020018280546102d59061119a565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f80610334610610565b9050610341818585610617565b600191505092915050565b5f600254905090565b5f8061035f610610565b905061036c8582856107da565b610377858585610865565b60019150509392505050565b5f6006905090565b5f80610395610610565b90506103b68185856103a7858961058e565b6103b191906111f7565b610617565b600191505092915050565b5f5b825181101561041d5761040a8382815181106103e2576103e161122a565b5b60200260200101518383815181106103fd576103fc61122a565b5b6020026020010151610ad1565b808061041590611257565b9150506103c3565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546104769061119a565b80601f01602080910402602001604051908101604052809291908181526020018280546104a29061119a565b80156104ed5780601f106104c4576101008083540402835291602001916104ed565b820191905f5260205f20905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b5f80610501610610565b90505f61050e828661058e565b905083811015610553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054a9061130e565b60405180910390fd5b6105608286868403610617565b60019250505092915050565b5f80610576610610565b9050610583818585610865565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c9061139c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ea9061142a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107cd9190610df1565b60405180910390a3505050565b5f6107e5848461058e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461085f5781811015610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611492565b60405180910390fd5b61085e8484848403610617565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611520565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610938906115ae565b60405180910390fd5b61094c838383610c1f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c69061163c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab89190610df1565b60405180910390a3610acb848484610c24565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b36906116a4565b60405180910390fd5b610b4a5f8383610c1f565b8060025f828254610b5b91906111f7565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c089190610df1565b60405180910390a3610c1b5f8383610c24565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610c60578082015181840152602081019050610c45565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c8582610c29565b610c8f8185610c33565b9350610c9f818560208601610c43565b610ca881610c6b565b840191505092915050565b5f6020820190508181035f830152610ccb8184610c7b565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d0d82610ce4565b9050919050565b610d1d81610d03565b8114610d27575f80fd5b50565b5f81359050610d3881610d14565b92915050565b5f819050919050565b610d5081610d3e565b8114610d5a575f80fd5b50565b5f81359050610d6b81610d47565b92915050565b5f8060408385031215610d8757610d86610cdc565b5b5f610d9485828601610d2a565b9250506020610da585828601610d5d565b9150509250929050565b5f8115159050919050565b610dc381610daf565b82525050565b5f602082019050610ddc5f830184610dba565b92915050565b610deb81610d3e565b82525050565b5f602082019050610e045f830184610de2565b92915050565b5f805f60608486031215610e2157610e20610cdc565b5b5f610e2e86828701610d2a565b9350506020610e3f86828701610d2a565b9250506040610e5086828701610d5d565b9150509250925092565b5f60ff82169050919050565b610e6f81610e5a565b82525050565b5f602082019050610e885f830184610e66565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610ec882610c6b565b810181811067ffffffffffffffff82111715610ee757610ee6610e92565b5b80604052505050565b5f610ef9610cd3565b9050610f058282610ebf565b919050565b5f67ffffffffffffffff821115610f2457610f23610e92565b5b602082029050602081019050919050565b5f80fd5b5f610f4b610f4684610f0a565b610ef0565b90508083825260208201905060208402830185811115610f6e57610f6d610f35565b5b835b81811015610f975780610f838882610d2a565b845260208401935050602081019050610f70565b5050509392505050565b5f82601f830112610fb557610fb4610e8e565b5b8135610fc5848260208601610f39565b91505092915050565b5f67ffffffffffffffff821115610fe857610fe7610e92565b5b602082029050602081019050919050565b5f61100b61100684610fce565b610ef0565b9050808382526020820190506020840283018581111561102e5761102d610f35565b5b835b8181101561105757806110438882610d5d565b845260208401935050602081019050611030565b5050509392505050565b5f82601f83011261107557611074610e8e565b5b8135611085848260208601610ff9565b91505092915050565b5f80604083850312156110a4576110a3610cdc565b5b5f83013567ffffffffffffffff8111156110c1576110c0610ce0565b5b6110cd85828601610fa1565b925050602083013567ffffffffffffffff8111156110ee576110ed610ce0565b5b6110fa85828601611061565b9150509250929050565b5f6020828403121561111957611118610cdc565b5b5f61112684828501610d2a565b91505092915050565b5f806040838503121561114557611144610cdc565b5b5f61115285828601610d2a565b925050602061116385828601610d2a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111b157607f821691505b6020821081036111c4576111c361116d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61120182610d3e565b915061120c83610d3e565b9250828201905080821115611224576112236111ca565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61126182610d3e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611293576112926111ca565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112f8602583610c33565b91506113038261129e565b604082019050919050565b5f6020820190508181035f830152611325816112ec565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611386602483610c33565b91506113918261132c565b604082019050919050565b5f6020820190508181035f8301526113b38161137a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611414602283610c33565b915061141f826113ba565b604082019050919050565b5f6020820190508181035f83015261144181611408565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61147c601d83610c33565b915061148782611448565b602082019050919050565b5f6020820190508181035f8301526114a981611470565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61150a602583610c33565b9150611515826114b0565b604082019050919050565b5f6020820190508181035f830152611537816114fe565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611598602383610c33565b91506115a38261153e565b604082019050919050565b5f6020820190508181035f8301526115c58161158c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611626602683610c33565b9150611631826115cc565b604082019050919050565b5f6020820190508181035f8301526116538161161a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61168e601f83610c33565b91506116998261165a565b602082019050919050565b5f6020820190508181035f8301526116bb81611682565b905091905056fea264697066735822122079139cce2f26738e08e3d4d8491ab876f4ee93c233043d03de77ec611f3f462f64736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100b2575f3560e01c8063672434821161006f57806367243482146101a057806370a08231146101bc57806395d89b41146101ec578063a457c2d71461020a578063a9059cbb1461023a578063dd62ed3e1461026a576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce567146101525780633950935114610170575b5f80fd5b6100be61029a565b6040516100cb9190610cb3565b60405180910390f35b6100ee60048036038101906100e99190610d71565b61032a565b6040516100fb9190610dc9565b60405180910390f35b61010c61034c565b6040516101199190610df1565b60405180910390f35b61013c60048036038101906101379190610e0a565b610355565b6040516101499190610dc9565b60405180910390f35b61015a610383565b6040516101679190610e75565b60405180910390f35b61018a60048036038101906101859190610d71565b61038b565b6040516101979190610dc9565b60405180910390f35b6101ba60048036038101906101b5919061108e565b6103c1565b005b6101d660048036038101906101d19190611104565b610422565b6040516101e39190610df1565b60405180910390f35b6101f4610467565b6040516102019190610cb3565b60405180910390f35b610224600480360381019061021f9190610d71565b6104f7565b6040516102319190610dc9565b60405180910390f35b610254600480360381019061024f9190610d71565b61056c565b6040516102619190610dc9565b60405180910390f35b610284600480360381019061027f919061112f565b61058e565b6040516102919190610df1565b60405180910390f35b6060600380546102a99061119a565b80601f01602080910402602001604051908101604052809291908181526020018280546102d59061119a565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f80610334610610565b9050610341818585610617565b600191505092915050565b5f600254905090565b5f8061035f610610565b905061036c8582856107da565b610377858585610865565b60019150509392505050565b5f6006905090565b5f80610395610610565b90506103b68185856103a7858961058e565b6103b191906111f7565b610617565b600191505092915050565b5f5b825181101561041d5761040a8382815181106103e2576103e161122a565b5b60200260200101518383815181106103fd576103fc61122a565b5b6020026020010151610ad1565b808061041590611257565b9150506103c3565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546104769061119a565b80601f01602080910402602001604051908101604052809291908181526020018280546104a29061119a565b80156104ed5780601f106104c4576101008083540402835291602001916104ed565b820191905f5260205f20905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b5f80610501610610565b90505f61050e828661058e565b905083811015610553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054a9061130e565b60405180910390fd5b6105608286868403610617565b60019250505092915050565b5f80610576610610565b9050610583818585610865565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c9061139c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ea9061142a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107cd9190610df1565b60405180910390a3505050565b5f6107e5848461058e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461085f5781811015610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611492565b60405180910390fd5b61085e8484848403610617565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611520565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610938906115ae565b60405180910390fd5b61094c838383610c1f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c69061163c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab89190610df1565b60405180910390a3610acb848484610c24565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b36906116a4565b60405180910390fd5b610b4a5f8383610c1f565b8060025f828254610b5b91906111f7565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c089190610df1565b60405180910390a3610c1b5f8383610c24565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610c60578082015181840152602081019050610c45565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c8582610c29565b610c8f8185610c33565b9350610c9f818560208601610c43565b610ca881610c6b565b840191505092915050565b5f6020820190508181035f830152610ccb8184610c7b565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d0d82610ce4565b9050919050565b610d1d81610d03565b8114610d27575f80fd5b50565b5f81359050610d3881610d14565b92915050565b5f819050919050565b610d5081610d3e565b8114610d5a575f80fd5b50565b5f81359050610d6b81610d47565b92915050565b5f8060408385031215610d8757610d86610cdc565b5b5f610d9485828601610d2a565b9250506020610da585828601610d5d565b9150509250929050565b5f8115159050919050565b610dc381610daf565b82525050565b5f602082019050610ddc5f830184610dba565b92915050565b610deb81610d3e565b82525050565b5f602082019050610e045f830184610de2565b92915050565b5f805f60608486031215610e2157610e20610cdc565b5b5f610e2e86828701610d2a565b9350506020610e3f86828701610d2a565b9250506040610e5086828701610d5d565b9150509250925092565b5f60ff82169050919050565b610e6f81610e5a565b82525050565b5f602082019050610e885f830184610e66565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610ec882610c6b565b810181811067ffffffffffffffff82111715610ee757610ee6610e92565b5b80604052505050565b5f610ef9610cd3565b9050610f058282610ebf565b919050565b5f67ffffffffffffffff821115610f2457610f23610e92565b5b602082029050602081019050919050565b5f80fd5b5f610f4b610f4684610f0a565b610ef0565b90508083825260208201905060208402830185811115610f6e57610f6d610f35565b5b835b81811015610f975780610f838882610d2a565b845260208401935050602081019050610f70565b5050509392505050565b5f82601f830112610fb557610fb4610e8e565b5b8135610fc5848260208601610f39565b91505092915050565b5f67ffffffffffffffff821115610fe857610fe7610e92565b5b602082029050602081019050919050565b5f61100b61100684610fce565b610ef0565b9050808382526020820190506020840283018581111561102e5761102d610f35565b5b835b8181101561105757806110438882610d5d565b845260208401935050602081019050611030565b5050509392505050565b5f82601f83011261107557611074610e8e565b5b8135611085848260208601610ff9565b91505092915050565b5f80604083850312156110a4576110a3610cdc565b5b5f83013567ffffffffffffffff8111156110c1576110c0610ce0565b5b6110cd85828601610fa1565b925050602083013567ffffffffffffffff8111156110ee576110ed610ce0565b5b6110fa85828601611061565b9150509250929050565b5f6020828403121561111957611118610cdc565b5b5f61112684828501610d2a565b91505092915050565b5f806040838503121561114557611144610cdc565b5b5f61115285828601610d2a565b925050602061116385828601610d2a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111b157607f821691505b6020821081036111c4576111c361116d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61120182610d3e565b915061120c83610d3e565b9250828201905080821115611224576112236111ca565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61126182610d3e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611293576112926111ca565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112f8602583610c33565b91506113038261129e565b604082019050919050565b5f6020820190508181035f830152611325816112ec565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611386602483610c33565b91506113918261132c565b604082019050919050565b5f6020820190508181035f8301526113b38161137a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611414602283610c33565b915061141f826113ba565b604082019050919050565b5f6020820190508181035f83015261144181611408565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61147c601d83610c33565b915061148782611448565b602082019050919050565b5f6020820190508181035f8301526114a981611470565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61150a602583610c33565b9150611515826114b0565b604082019050919050565b5f6020820190508181035f830152611537816114fe565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611598602383610c33565b91506115a38261153e565b604082019050919050565b5f6020820190508181035f8301526115c58161158c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611626602683610c33565b9150611631826115cc565b604082019050919050565b5f6020820190508181035f8301526116538161161a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61168e601f83610c33565b91506116998261165a565b602082019050919050565b5f6020820190508181035f8301526116bb81611682565b905091905056fea264697066735822122079139cce2f26738e08e3d4d8491ab876f4ee93c233043d03de77ec611f3f462f64736f6c63430008140033
[ 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.