ERC-20
Overview
Max Total Supply
10,000,000 SMT
Holders
324
Market
Price
$0.15 @ 0.000044 ETH
Onchain Market Cap
$1,469,000.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
65.770220435735924259 SMTValue
$9.66 ( ~0.00288733481249548 Eth) [0.0007%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SMTERC20
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
/* SPDX-License-Identifier: MIT Smart Marketing Token is a STC-based project developed to create the marketing agency of the future. Check more details about $SMT at smartmarketingtoken.com/ */ pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract SMTERC20 is ERC20 { // 18 decimals constructor() ERC20("Smart Marketing Token", "SMT") { _mint(_msgSender(), 10_000_000 * (10 ** uint256(decimals()))); } function batchTransfer(address[] calldata destinations, uint256[] calldata amounts) public { uint256 n = destinations.length; address sender = _msgSender(); require(n == amounts.length, "SMTERC20: Invalid BatchTransfer"); for(uint256 i = 0; i < n; i++) _transfer(sender, destinations[i], amounts[i]); } }
// SPDX-License-Identifier: MIT 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.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; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT 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 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; } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 20000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"destinations","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601581526020017f536d617274204d61726b6574696e6720546f6b656e00000000000000000000008152506040518060400160405280600381526020016214d35560ea1b81525081600390805190602001906200007c929190620001be565b50805162000092906004906020840190620001be565b505050620000cc620000a9620000d260201b60201c565b620000b76012600a620002c8565b620000c6906298968062000393565b620000d6565b62000408565b3390565b6001600160a01b038216620001315760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000145919062000264565b90915550506001600160a01b038216600090815260208190526040812080548392906200017490849062000264565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001cc90620003b5565b90600052602060002090601f016020900481019282620001f057600085556200023b565b82601f106200020b57805160ff19168380011785556200023b565b828001600101855582156200023b579182015b828111156200023b5782518255916020019190600101906200021e565b50620002499291506200024d565b5090565b5b808211156200024957600081556001016200024e565b600082198211156200027a576200027a620003f2565b500190565b600181815b80851115620002c0578160001904821115620002a457620002a4620003f2565b80851615620002b257918102915b93841c939080029062000284565b509250929050565b6000620002d68383620002dd565b9392505050565b600082620002ee575060016200038d565b81620002fd575060006200038d565b8160018114620003165760028114620003215762000341565b60019150506200038d565b60ff841115620003355762000335620003f2565b50506001821b6200038d565b5060208310610133831016604e8410600b841016171562000366575081810a6200038d565b6200037283836200027f565b8060001904821115620003895762000389620003f2565b0290505b92915050565b6000816000190483118215151615620003b057620003b0620003f2565b500290565b600181811c90821680620003ca57607f821691505b60208210811415620003ec57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610d7980620004186000396000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c806370a0823111610081578063a457c2d71161005b578063a457c2d7146101b4578063a9059cbb146101c7578063dd62ed3e146101da57600080fd5b806370a082311461016157806388d695b21461019757806395d89b41146101ac57600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461014e57600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e1610220565b6040516100ee9190610bcd565b60405180910390f35b61010a610105366004610b37565b6102b2565b60405190151581526020016100ee565b6002545b6040519081526020016100ee565b61010a61013a366004610afb565b6102c8565b604051601281526020016100ee565b61010a61015c366004610b37565b6103b3565b61011e61016f366004610aa6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101aa6101a5366004610b61565b6103fc565b005b6100e16104d6565b61010a6101c2366004610b37565b6104e5565b61010a6101d5366004610b37565b6105bd565b61011e6101e8366004610ac8565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461022f90610c58565b80601f016020809104026020016040519081016040528092919081815260200182805461025b90610c58565b80156102a85780601f1061027d576101008083540402835291602001916102a8565b820191906000526020600020905b81548152906001019060200180831161028b57829003601f168201915b5050505050905090565b60006102bf3384846105ca565b50600192915050565b60006102d584848461077d565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203384529091529020548281101561039b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103a885338584036105ca565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916102bf9185906103f7908690610c40565b6105ca565b8233828214610467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f534d5445524332303a20496e76616c69642042617463685472616e73666572006044820152606401610392565b60005b828110156104cd576104bb8288888481811061048857610488610d14565b905060200201602081019061049d9190610aa6565b8787858181106104af576104af610d14565b9050602002013561077d565b806104c581610cac565b91505061046a565b50505050505050565b60606004805461022f90610c58565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156105a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610392565b6105b333858584036105ca565b5060019392505050565b60006102bf33848461077d565b73ffffffffffffffffffffffffffffffffffffffff831661066c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff821661070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff82166108c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906109bd908490610c40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a2391815260200190565b60405180910390a350505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610a5557600080fd5b919050565b60008083601f840112610a6c57600080fd5b50813567ffffffffffffffff811115610a8457600080fd5b6020830191508360208260051b8501011115610a9f57600080fd5b9250929050565b600060208284031215610ab857600080fd5b610ac182610a31565b9392505050565b60008060408385031215610adb57600080fd5b610ae483610a31565b9150610af260208401610a31565b90509250929050565b600080600060608486031215610b1057600080fd5b610b1984610a31565b9250610b2760208501610a31565b9150604084013590509250925092565b60008060408385031215610b4a57600080fd5b610b5383610a31565b946020939093013593505050565b60008060008060408587031215610b7757600080fd5b843567ffffffffffffffff80821115610b8f57600080fd5b610b9b88838901610a5a565b90965094506020870135915080821115610bb457600080fd5b50610bc187828801610a5a565b95989497509550505050565b600060208083528351808285015260005b81811015610bfa57858101830151858201604001528201610bde565b81811115610c0c576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c5357610c53610ce5565b500190565b600181811c90821680610c6c57607f821691505b60208210811415610ca6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610cde57610cde610ce5565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122004082f45504225fb105938033e9fd4ca36d4cf3689f977f8554b2343d5801d4b64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100d45760003560e01c806370a0823111610081578063a457c2d71161005b578063a457c2d7146101b4578063a9059cbb146101c7578063dd62ed3e146101da57600080fd5b806370a082311461016157806388d695b21461019757806395d89b41146101ac57600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461014e57600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e1610220565b6040516100ee9190610bcd565b60405180910390f35b61010a610105366004610b37565b6102b2565b60405190151581526020016100ee565b6002545b6040519081526020016100ee565b61010a61013a366004610afb565b6102c8565b604051601281526020016100ee565b61010a61015c366004610b37565b6103b3565b61011e61016f366004610aa6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101aa6101a5366004610b61565b6103fc565b005b6100e16104d6565b61010a6101c2366004610b37565b6104e5565b61010a6101d5366004610b37565b6105bd565b61011e6101e8366004610ac8565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461022f90610c58565b80601f016020809104026020016040519081016040528092919081815260200182805461025b90610c58565b80156102a85780601f1061027d576101008083540402835291602001916102a8565b820191906000526020600020905b81548152906001019060200180831161028b57829003601f168201915b5050505050905090565b60006102bf3384846105ca565b50600192915050565b60006102d584848461077d565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203384529091529020548281101561039b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103a885338584036105ca565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916102bf9185906103f7908690610c40565b6105ca565b8233828214610467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f534d5445524332303a20496e76616c69642042617463685472616e73666572006044820152606401610392565b60005b828110156104cd576104bb8288888481811061048857610488610d14565b905060200201602081019061049d9190610aa6565b8787858181106104af576104af610d14565b9050602002013561077d565b806104c581610cac565b91505061046a565b50505050505050565b60606004805461022f90610c58565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156105a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610392565b6105b333858584036105ca565b5060019392505050565b60006102bf33848461077d565b73ffffffffffffffffffffffffffffffffffffffff831661066c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff821661070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff82166108c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610392565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906109bd908490610c40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a2391815260200190565b60405180910390a350505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610a5557600080fd5b919050565b60008083601f840112610a6c57600080fd5b50813567ffffffffffffffff811115610a8457600080fd5b6020830191508360208260051b8501011115610a9f57600080fd5b9250929050565b600060208284031215610ab857600080fd5b610ac182610a31565b9392505050565b60008060408385031215610adb57600080fd5b610ae483610a31565b9150610af260208401610a31565b90509250929050565b600080600060608486031215610b1057600080fd5b610b1984610a31565b9250610b2760208501610a31565b9150604084013590509250925092565b60008060408385031215610b4a57600080fd5b610b5383610a31565b946020939093013593505050565b60008060008060408587031215610b7757600080fd5b843567ffffffffffffffff80821115610b8f57600080fd5b610b9b88838901610a5a565b90965094506020870135915080821115610bb457600080fd5b50610bc187828801610a5a565b95989497509550505050565b600060208083528351808285015260005b81811015610bfa57858101830151858201604001528201610bde565b81811115610c0c576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c5357610c53610ce5565b500190565b600181811c90821680610c6c57607f821691505b60208210811415610ca6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610cde57610cde610ce5565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122004082f45504225fb105938033e9fd4ca36d4cf3689f977f8554b2343d5801d4b64736f6c63430008070033
Deployed Bytecode Sourcemap
285:540:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;2578:14:5;;2571:22;2553:41;;2541:2;2526:18;4181:166:1;2413:187:5;3172:106:1;3259:12;;3172:106;;;6612:25:5;;;6600:2;6585:18;3172:106:1;6466:177:5;4814:478:1;;;;;;:::i;:::-;;:::i;3021:91::-;;;3103:2;6790:36:5;;6778:2;6763:18;3021:91:1;6648:184:5;5687:212:1;;;;;;:::i;:::-;;:::i;3336:125::-;;;;;;:::i;:::-;3436:18;;3410:7;3436:18;;;;;;;;;;;;3336:125;473:350:0;;;;;;:::i;:::-;;:::i;:::-;;2295:102:1;;;:::i;6386:405::-;;;;;;:::i;:::-;;:::i;3664:172::-;;;;;;:::i;:::-;;:::i;3894:149::-;;;;;;:::i;:::-;4009:18;;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;2084:98;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;:::o;4181:166::-;4264:4;4280:39;666:10:4;4303:7:1;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:1;4181:166;;;;:::o;4814:478::-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;5040:19;;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:4;5040:33:1;;;;;;;;5091:26;;;;5083:79;;;;;;;4682:2:5;5083:79:1;;;4664:21:5;4721:2;4701:18;;;4694:30;4760:34;4740:18;;;4733:62;4831:10;4811:18;;;4804:38;4859:19;;5083:79:1;;;;;;;;;5196:57;5205:6;666:10:4;5246:6:1;5227:16;:25;5196:8;:57::i;:::-;-1:-1:-1;5281:4:1;;4814:478;-1:-1:-1;;;;4814:478:1:o;5687:212::-;666:10:4;5775:4:1;5823:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;473:350:0:-;586:12;666:10:4;662:19:0;;;654:63;;;;;;;6308:2:5;654:63:0;;;6290:21:5;6347:2;6327:18;;;6320:30;6386:33;6366:18;;;6359:61;6437:18;;654:63:0;6106:355:5;654:63:0;731:9;727:89;750:1;746;:5;727:89;;;770:46;780:6;788:12;;801:1;788:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;805:7;;813:1;805:10;;;;;;;:::i;:::-;;;;;;;770:9;:46::i;:::-;753:3;;;;:::i;:::-;;;;727:89;;;;564:259;;473:350;;;;:::o;2295:102:1:-;2351:13;2383:7;2376:14;;;;;:::i;6386:405::-;666:10:4;6479:4:1;6522:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;6574:35;;;;6566:85;;;;;;;5902:2:5;6566:85:1;;;5884:21:5;5941:2;5921:18;;;5914:30;5980:34;5960:18;;;5953:62;6051:7;6031:18;;;6024:35;6076:19;;6566:85:1;5700:401:5;6566:85:1;6685:67;666:10:4;6708:7:1;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:1;;6386:405;-1:-1:-1;;;6386:405:1:o;3664:172::-;3750:4;3766:42;666:10:4;3790:9:1;3801:6;3766:9;:42::i;9962:370::-;10093:19;;;10085:68;;;;;;;5497:2:5;10085:68:1;;;5479:21:5;5536:2;5516:18;;;5509:30;5575:34;5555:18;;;5548:62;5646:6;5626:18;;;5619:34;5670:19;;10085:68:1;5295:400:5;10085:68:1;10171:21;;;10163:68;;;;;;;3872:2:5;10163:68:1;;;3854:21:5;3911:2;3891:18;;;3884:30;3950:34;3930:18;;;3923:62;4021:4;4001:18;;;3994:32;4043:19;;10163:68:1;3670:398:5;10163:68:1;10242:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;6612:25:5;;;10293:32:1;;6585:18:5;10293:32:1;;;;;;;9962:370;;;:::o;7265:713::-;7400:20;;;7392:70;;;;;;;5091:2:5;7392:70:1;;;5073:21:5;5130:2;5110:18;;;5103:30;5169:34;5149:18;;;5142:62;5240:7;5220:18;;;5213:35;5265:19;;7392:70:1;4889:401:5;7392:70:1;7480:23;;;7472:71;;;;;;;3468:2:5;7472:71:1;;;3450:21:5;3507:2;3487:18;;;3480:30;3546:34;3526:18;;;3519:62;3617:5;3597:18;;;3590:33;3640:19;;7472:71:1;3266:399:5;7472:71:1;7636:17;;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;;;;4275:2:5;7663:74:1;;;4257:21:5;4314:2;4294:18;;;4287:30;4353:34;4333:18;;;4326:62;4424:8;4404:18;;;4397:36;4450:19;;7663:74:1;4073:402:5;7663:74:1;7771:17;;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;7879:35;;7888:6;7879:35;;;7907:6;7879:35;;;;6612:25:5;;6600:2;6585:18;;6466:177;7879:35:1;;;;;;;;7382:596;7265:713;;;:::o;14:196:5:-;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:367::-;278:8;288:6;342:3;335:4;327:6;323:17;319:27;309:55;;360:1;357;350:12;309:55;-1:-1:-1;383:20:5;;426:18;415:30;;412:50;;;458:1;455;448:12;412:50;495:4;487:6;483:17;471:29;;555:3;548:4;538:6;535:1;531:14;523:6;519:27;515:38;512:47;509:67;;;572:1;569;562:12;509:67;215:367;;;;;:::o;587:186::-;646:6;699:2;687:9;678:7;674:23;670:32;667:52;;;715:1;712;705:12;667:52;738:29;757:9;738:29;:::i;:::-;728:39;587:186;-1:-1:-1;;;587:186:5:o;778:260::-;846:6;854;907:2;895:9;886:7;882:23;878:32;875:52;;;923:1;920;913:12;875:52;946:29;965:9;946:29;:::i;:::-;936:39;;994:38;1028:2;1017:9;1013:18;994:38;:::i;:::-;984:48;;778:260;;;;;:::o;1043:328::-;1120:6;1128;1136;1189:2;1177:9;1168:7;1164:23;1160:32;1157:52;;;1205:1;1202;1195:12;1157:52;1228:29;1247:9;1228:29;:::i;:::-;1218:39;;1276:38;1310:2;1299:9;1295:18;1276:38;:::i;:::-;1266:48;;1361:2;1350:9;1346:18;1333:32;1323:42;;1043:328;;;;;:::o;1376:254::-;1444:6;1452;1505:2;1493:9;1484:7;1480:23;1476:32;1473:52;;;1521:1;1518;1511:12;1473:52;1544:29;1563:9;1544:29;:::i;:::-;1534:39;1620:2;1605:18;;;;1592:32;;-1:-1:-1;;;1376:254:5:o;1635:773::-;1757:6;1765;1773;1781;1834:2;1822:9;1813:7;1809:23;1805:32;1802:52;;;1850:1;1847;1840:12;1802:52;1890:9;1877:23;1919:18;1960:2;1952:6;1949:14;1946:34;;;1976:1;1973;1966:12;1946:34;2015:70;2077:7;2068:6;2057:9;2053:22;2015:70;:::i;:::-;2104:8;;-1:-1:-1;1989:96:5;-1:-1:-1;2192:2:5;2177:18;;2164:32;;-1:-1:-1;2208:16:5;;;2205:36;;;2237:1;2234;2227:12;2205:36;;2276:72;2340:7;2329:8;2318:9;2314:24;2276:72;:::i;:::-;1635:773;;;;-1:-1:-1;2367:8:5;-1:-1:-1;;;;1635:773:5:o;2605:656::-;2717:4;2746:2;2775;2764:9;2757:21;2807:6;2801:13;2850:6;2845:2;2834:9;2830:18;2823:34;2875:1;2885:140;2899:6;2896:1;2893:13;2885:140;;;2994:14;;;2990:23;;2984:30;2960:17;;;2979:2;2956:26;2949:66;2914:10;;2885:140;;;3043:6;3040:1;3037:13;3034:91;;;3113:1;3108:2;3099:6;3088:9;3084:22;3080:31;3073:42;3034:91;-1:-1:-1;3177:2:5;3165:15;3182:66;3161:88;3146:104;;;;3252:2;3142:113;;2605:656;-1:-1:-1;;;2605:656:5:o;6837:128::-;6877:3;6908:1;6904:6;6901:1;6898:13;6895:39;;;6914:18;;:::i;:::-;-1:-1:-1;6950:9:5;;6837:128::o;6970:437::-;7049:1;7045:12;;;;7092;;;7113:61;;7167:4;7159:6;7155:17;7145:27;;7113:61;7220:2;7212:6;7209:14;7189:18;7186:38;7183:218;;;7257:77;7254:1;7247:88;7358:4;7355:1;7348:15;7386:4;7383:1;7376:15;7183:218;;6970:437;;;:::o;7412:195::-;7451:3;7482:66;7475:5;7472:77;7469:103;;;7552:18;;:::i;:::-;-1:-1:-1;7599:1:5;7588:13;;7412:195::o;7612:184::-;7664:77;7661:1;7654:88;7761:4;7758:1;7751:15;7785:4;7782:1;7775:15;7801:184;7853:77;7850:1;7843:88;7950:4;7947:1;7940:15;7974:4;7971:1;7964:15
Swarm Source
ipfs://04082f45504225fb105938033e9fd4ca36d4cf3689f977f8554b2343d5801d4b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.