ERC-20
Overview
Max Total Supply
10,000,000 BET
Holders
47
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 2 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BETToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-13 */ // 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); } /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { 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 defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overloaded; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 2; } /** * @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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 to 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 Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } contract BETToken is ERC20Burnable { /** * @dev Mint 10mln tokens to deplyer */ constructor() ERC20("BET", "BET") { _mint(_msgSender(), 10_000_000 * (10**uint256(decimals()))); } }
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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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
60806040523480156200001157600080fd5b506040518060400160405280600381526020016210915560ea1b8152506040518060400160405280600381526020016210915560ea1b815250816003908051906020019062000062929190620001a6565b50805162000078906004906020840190620001a6565b505050620000be6200008f620000c460201b60201c565b62000099620000c8565b620000a99060ff16600a620002f4565b620000b89062989680620003e9565b620000cd565b6200045e565b3390565b600290565b6001600160a01b038216620000ff5760405162461bcd60e51b8152600401620000f6906200024c565b60405180910390fd5b6200010d60008383620001a1565b80600260008282546200012191906200028c565b90915550506001600160a01b03821660009081526020819052604081208054839290620001509084906200028c565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200019590859062000283565b60405180910390a35050565b505050565b828054620001b4906200040b565b90600052602060002090601f016020900481019282620001d8576000855562000223565b82601f10620001f357805160ff191683800117855562000223565b8280016001018555821562000223579182015b828111156200022357825182559160200191906001019062000206565b506200023192915062000235565b5090565b5b8082111562000231576000815560010162000236565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002a257620002a262000448565b500190565b80825b6001808611620002bb5750620002eb565b818704821115620002d057620002d062000448565b80861615620002de57918102915b9490941c938002620002aa565b94509492505050565b60006200030560001984846200030c565b9392505050565b6000826200031d5750600162000305565b816200032c5750600062000305565b8160018114620003455760028114620003505762000384565b600191505062000305565b60ff84111562000364576200036462000448565b6001841b9150848211156200037d576200037d62000448565b5062000305565b5060208310610133831016604e8410600b8410161715620003bc575081810a83811115620003b657620003b662000448565b62000305565b620003cb8484846001620002a7565b808604821115620003e057620003e062000448565b02949350505050565b600081600019048311821515161562000406576200040662000448565b500290565b6002810460018216806200042057607f821691505b602082108114156200044257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610c57806200046e6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461019d578063a457c2d7146101a5578063a9059cbb146101b8578063dd62ed3e146101cb576100cf565b806342966c681461016257806370a082311461017757806379cc67901461018a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101de565b6040516100e9919061088f565b60405180910390f35b610105610100366004610843565b610270565b6040516100e99190610884565b61011a61028d565b6040516100e99190610b8a565b610105610135366004610808565b610293565b610142610333565b6040516100e99190610b93565b61010561015d366004610843565b610338565b61017561017036600461086c565b610387565b005b61011a6101853660046107b5565b61039b565b610175610198366004610843565b6103ba565b6100dc61040f565b6101056101b3366004610843565b61041e565b6101056101c6366004610843565b610499565b61011a6101d93660046107d6565b6104ad565b6060600380546101ed90610bd0565b80601f016020809104026020016040519081016040528092919081815260200182805461021990610bd0565b80156102665780601f1061023b57610100808354040283529160200191610266565b820191906000526020600020905b81548152906001019060200180831161024957829003601f168201915b5050505050905090565b600061028461027d6104d8565b84846104dc565b50600192915050565b60025490565b60006102a0848484610590565b6001600160a01b0384166000908152600160205260408120816102c16104d8565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561030d5760405162461bcd60e51b8152600401610304906109ef565b60405180910390fd5b610328856103196104d8565b6103238685610bb9565b6104dc565b506001949350505050565b600290565b60006102846103456104d8565b8484600160006103536104d8565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103239190610ba1565b6103986103926104d8565b826106b8565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b60006103c8836101d96104d8565b9050818110156103ea5760405162461bcd60e51b815260040161030490610a37565b610400836103f66104d8565b6103238585610bb9565b61040a83836106b8565b505050565b6060600480546101ed90610bd0565b6000806001600061042d6104d8565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104795760405162461bcd60e51b815260040161030490610b45565b61048f6104846104d8565b856103238685610bb9565b5060019392505050565b60006102846104a66104d8565b8484610590565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166105025760405162461bcd60e51b815260040161030490610b01565b6001600160a01b0382166105285760405162461bcd60e51b815260040161030490610967565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610583908590610b8a565b60405180910390a3505050565b6001600160a01b0383166105b65760405162461bcd60e51b815260040161030490610abc565b6001600160a01b0382166105dc5760405162461bcd60e51b8152600401610304906108e2565b6105e783838361040a565b6001600160a01b038316600090815260208190526040902054818110156106205760405162461bcd60e51b8152600401610304906109a9565b61062a8282610bb9565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610660908490610ba1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106aa9190610b8a565b60405180910390a350505050565b6001600160a01b0382166106de5760405162461bcd60e51b815260040161030490610a7b565b6106ea8260008361040a565b6001600160a01b038216600090815260208190526040902054818110156107235760405162461bcd60e51b815260040161030490610925565b61072d8282610bb9565b6001600160a01b0384166000908152602081905260408120919091556002805484929061075b908490610bb9565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610583908690610b8a565b80356001600160a01b03811681146103b557600080fd5b6000602082840312156107c6578081fd5b6107cf8261079e565b9392505050565b600080604083850312156107e8578081fd5b6107f18361079e565b91506107ff6020840161079e565b90509250929050565b60008060006060848603121561081c578081fd5b6108258461079e565b92506108336020850161079e565b9150604084013590509250925092565b60008060408385031215610855578182fd5b61085e8361079e565b946020939093013593505050565b60006020828403121561087d578081fd5b5035919050565b901515815260200190565b6000602080835283518082850152825b818110156108bb5785810183015185820160400152820161089f565b818111156108cc5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610bb457610bb4610c0b565b500190565b600082821015610bcb57610bcb610c0b565b500390565b600281046001821680610be457607f821691505b60208210811415610c0557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a0656a325ce5d22fd85448ae543caf834bc7e38e77339f9b9e5ab0158b07b31064736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461019d578063a457c2d7146101a5578063a9059cbb146101b8578063dd62ed3e146101cb576100cf565b806342966c681461016257806370a082311461017757806379cc67901461018a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101de565b6040516100e9919061088f565b60405180910390f35b610105610100366004610843565b610270565b6040516100e99190610884565b61011a61028d565b6040516100e99190610b8a565b610105610135366004610808565b610293565b610142610333565b6040516100e99190610b93565b61010561015d366004610843565b610338565b61017561017036600461086c565b610387565b005b61011a6101853660046107b5565b61039b565b610175610198366004610843565b6103ba565b6100dc61040f565b6101056101b3366004610843565b61041e565b6101056101c6366004610843565b610499565b61011a6101d93660046107d6565b6104ad565b6060600380546101ed90610bd0565b80601f016020809104026020016040519081016040528092919081815260200182805461021990610bd0565b80156102665780601f1061023b57610100808354040283529160200191610266565b820191906000526020600020905b81548152906001019060200180831161024957829003601f168201915b5050505050905090565b600061028461027d6104d8565b84846104dc565b50600192915050565b60025490565b60006102a0848484610590565b6001600160a01b0384166000908152600160205260408120816102c16104d8565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561030d5760405162461bcd60e51b8152600401610304906109ef565b60405180910390fd5b610328856103196104d8565b6103238685610bb9565b6104dc565b506001949350505050565b600290565b60006102846103456104d8565b8484600160006103536104d8565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103239190610ba1565b6103986103926104d8565b826106b8565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b60006103c8836101d96104d8565b9050818110156103ea5760405162461bcd60e51b815260040161030490610a37565b610400836103f66104d8565b6103238585610bb9565b61040a83836106b8565b505050565b6060600480546101ed90610bd0565b6000806001600061042d6104d8565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104795760405162461bcd60e51b815260040161030490610b45565b61048f6104846104d8565b856103238685610bb9565b5060019392505050565b60006102846104a66104d8565b8484610590565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166105025760405162461bcd60e51b815260040161030490610b01565b6001600160a01b0382166105285760405162461bcd60e51b815260040161030490610967565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610583908590610b8a565b60405180910390a3505050565b6001600160a01b0383166105b65760405162461bcd60e51b815260040161030490610abc565b6001600160a01b0382166105dc5760405162461bcd60e51b8152600401610304906108e2565b6105e783838361040a565b6001600160a01b038316600090815260208190526040902054818110156106205760405162461bcd60e51b8152600401610304906109a9565b61062a8282610bb9565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610660908490610ba1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106aa9190610b8a565b60405180910390a350505050565b6001600160a01b0382166106de5760405162461bcd60e51b815260040161030490610a7b565b6106ea8260008361040a565b6001600160a01b038216600090815260208190526040902054818110156107235760405162461bcd60e51b815260040161030490610925565b61072d8282610bb9565b6001600160a01b0384166000908152602081905260408120919091556002805484929061075b908490610bb9565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610583908690610b8a565b80356001600160a01b03811681146103b557600080fd5b6000602082840312156107c6578081fd5b6107cf8261079e565b9392505050565b600080604083850312156107e8578081fd5b6107f18361079e565b91506107ff6020840161079e565b90509250929050565b60008060006060848603121561081c578081fd5b6108258461079e565b92506108336020850161079e565b9150604084013590509250925092565b60008060408385031215610855578182fd5b61085e8361079e565b946020939093013593505050565b60006020828403121561087d578081fd5b5035919050565b901515815260200190565b6000602080835283518082850152825b818110156108bb5785810183015185820160400152820161089f565b818111156108cc5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610bb457610bb4610c0b565b500190565b600082821015610bcb57610bcb610c0b565b500390565b600281046001821680610be457607f821691505b60208210811415610c0557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a0656a325ce5d22fd85448ae543caf834bc7e38e77339f9b9e5ab0158b07b31064736f6c63430008000033
Deployed Bytecode Sourcemap
15489:217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5618:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7757:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6710:108::-;;;:::i;:::-;;;;;;;:::i;8408:422::-;;;;;;:::i;:::-;;:::i;6562:83::-;;;:::i;:::-;;;;;;;:::i;9239:215::-;;;;;;:::i;:::-;;:::i;14740:91::-;;;;;;:::i;:::-;;:::i;:::-;;6881:127;;;;;;:::i;:::-;;:::i;15150:332::-;;;;;;:::i;:::-;;:::i;5828:95::-;;;:::i;9957:377::-;;;;;;:::i;:::-;;:::i;7221:175::-;;;;;;:::i;:::-;;:::i;7459:151::-;;;;;;:::i;:::-;;:::i;5618:91::-;5663:13;5696:5;5689:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5618:91;:::o;7757:169::-;7840:4;7857:39;7866:12;:10;:12::i;:::-;7880:7;7889:6;7857:8;:39::i;:::-;-1:-1:-1;7914:4:0;7757:169;;;;:::o;6710:108::-;6798:12;;6710:108;:::o;8408:422::-;8514:4;8531:36;8541:6;8549:9;8560:6;8531:9;:36::i;:::-;-1:-1:-1;;;;;8607:19:0;;8580:24;8607:19;;;:11;:19;;;;;8580:24;8627:12;:10;:12::i;:::-;-1:-1:-1;;;;;8607:33:0;-1:-1:-1;;;;;8607:33:0;;;;;;;;;;;;;8580:60;;8679:6;8659:16;:26;;8651:79;;;;-1:-1:-1;;;8651:79:0;;;;;;;:::i;:::-;;;;;;;;;8741:57;8750:6;8758:12;:10;:12::i;:::-;8772:25;8791:6;8772:16;:25;:::i;:::-;8741:8;:57::i;:::-;-1:-1:-1;8818:4:0;;8408:422;-1:-1:-1;;;;8408:422:0:o;6562:83::-;6636:1;6562:83;:::o;9239:215::-;9327:4;9344:80;9353:12;:10;:12::i;:::-;9367:7;9413:10;9376:11;:25;9388:12;:10;:12::i;:::-;-1:-1:-1;;;;;9376:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;9376:25:0;;;:34;;;;;;;;;;:47;;;;:::i;14740:91::-;14796:27;14802:12;:10;:12::i;:::-;14816:6;14796:5;:27::i;:::-;14740:91;:::o;6881:127::-;-1:-1:-1;;;;;6982:18:0;;6955:7;6982:18;;;;;;;;;;;6881:127;;;;:::o;15150:332::-;15227:24;15254:32;15264:7;15273:12;:10;:12::i;15254:32::-;15227:59;;15325:6;15305:16;:26;;15297:75;;;;-1:-1:-1;;;15297:75:0;;;;;;;:::i;:::-;15383:58;15392:7;15401:12;:10;:12::i;:::-;15415:25;15434:6;15415:16;:25;:::i;15383:58::-;15452:22;15458:7;15467:6;15452:5;:22::i;:::-;15150:332;;;:::o;5828:95::-;5875:13;5908:7;5901:14;;;;;:::i;9957:377::-;10050:4;10067:24;10094:11;:25;10106:12;:10;:12::i;:::-;-1:-1:-1;;;;;10094:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10094:25:0;;;:34;;;;;;;;;;;-1:-1:-1;10147:35:0;;;;10139:85;;;;-1:-1:-1;;;10139:85:0;;;;;;;:::i;:::-;10235:67;10244:12;:10;:12::i;:::-;10258:7;10267:34;10286:15;10267:16;:34;:::i;10235:67::-;-1:-1:-1;10322:4:0;;9957:377;-1:-1:-1;;;9957:377:0:o;7221:175::-;7307:4;7324:42;7334:12;:10;:12::i;:::-;7348:9;7359:6;7324:9;:42::i;7459:151::-;-1:-1:-1;;;;;7575:18:0;;;7548:7;7575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7459:151::o;3314:98::-;3394:10;3314:98;:::o;13313:346::-;-1:-1:-1;;;;;13415:19:0;;13407:68;;;;-1:-1:-1;;;13407:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13494:21:0;;13486:68;;;;-1:-1:-1;;;13486:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13567:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;13619:32;;;;;13597:6;;13619:32;:::i;:::-;;;;;;;;13313:346;;;:::o;10824:604::-;-1:-1:-1;;;;;10930:20:0;;10922:70;;;;-1:-1:-1;;;10922:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11011:23:0;;11003:71;;;;-1:-1:-1;;;11003:71:0;;;;;;;:::i;:::-;11087:47;11108:6;11116:9;11127:6;11087:20;:47::i;:::-;-1:-1:-1;;;;;11171:17:0;;11147:21;11171:17;;;;;;;;;;;11207:23;;;;11199:74;;;;-1:-1:-1;;;11199:74:0;;;;;;;:::i;:::-;11304:22;11320:6;11304:13;:22;:::i;:::-;-1:-1:-1;;;;;11284:17:0;;;:9;:17;;;;;;;;;;;:42;;;;11337:20;;;;;;;;:30;;11361:6;;11284:9;11337:30;;11361:6;;11337:30;:::i;:::-;;;;;;;;11402:9;-1:-1:-1;;;;;11385:35:0;11394:6;-1:-1:-1;;;;;11385:35:0;;11413:6;11385:35;;;;;;:::i;:::-;;;;;;;;10824:604;;;;:::o;12381:494::-;-1:-1:-1;;;;;12465:21:0;;12457:67;;;;-1:-1:-1;;;12457:67:0;;;;;;;:::i;:::-;12537:49;12558:7;12575:1;12579:6;12537:20;:49::i;:::-;-1:-1:-1;;;;;12624:18:0;;12599:22;12624:18;;;;;;;;;;;12661:24;;;;12653:71;;;;-1:-1:-1;;;12653:71:0;;;;;;;:::i;:::-;12756:23;12773:6;12756:14;:23;:::i;:::-;-1:-1:-1;;;;;12735:18:0;;:9;:18;;;;;;;;;;:44;;;;12790:12;:22;;12806:6;;12735:9;12790:22;;12806:6;;12790:22;:::i;:::-;;;;-1:-1:-1;;12830:37:0;;12856:1;;-1:-1:-1;;;;;12830:37:0;;;;;;;12860:6;;12830:37;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:187::-;1654:14;;1647:22;1629:41;;1617:2;1602:18;;1584:92::o;1681:603::-;;1822:2;1851;1840:9;1833:21;1883:6;1877:13;1926:6;1921:2;1910:9;1906:18;1899:34;1951:4;1964:140;1978:6;1975:1;1972:13;1964:140;;;2073:14;;;2069:23;;2063:30;2039:17;;;2058:2;2035:26;2028:66;1993:10;;1964:140;;;2122:6;2119:1;2116:13;2113:2;;;2192:4;2187:2;2178:6;2167:9;2163:22;2159:31;2152:45;2113:2;-1:-1:-1;2268:2:1;2247:15;-1:-1:-1;;2243:29:1;2228:45;;;;2275:2;2224:54;;1802:482;-1:-1:-1;;;1802:482:1:o;2289:399::-;2491:2;2473:21;;;2530:2;2510:18;;;2503:30;2569:34;2564:2;2549:18;;2542:62;-1:-1:-1;;;2635:2:1;2620:18;;2613:33;2678:3;2663:19;;2463:225::o;2693:398::-;2895:2;2877:21;;;2934:2;2914:18;;;2907:30;2973:34;2968:2;2953:18;;2946:62;-1:-1:-1;;;3039:2:1;3024:18;;3017:32;3081:3;3066:19;;2867:224::o;3096:398::-;3298:2;3280:21;;;3337:2;3317:18;;;3310:30;3376:34;3371:2;3356:18;;3349:62;-1:-1:-1;;;3442:2:1;3427:18;;3420:32;3484:3;3469:19;;3270:224::o;3499:402::-;3701:2;3683:21;;;3740:2;3720:18;;;3713:30;3779:34;3774:2;3759:18;;3752:62;-1:-1:-1;;;3845:2:1;3830:18;;3823:36;3891:3;3876:19;;3673:228::o;3906:404::-;4108:2;4090:21;;;4147:2;4127:18;;;4120:30;4186:34;4181:2;4166:18;;4159:62;-1:-1:-1;;;4252:2:1;4237:18;;4230:38;4300:3;4285:19;;4080:230::o;4315:400::-;4517:2;4499:21;;;4556:2;4536:18;;;4529:30;4595:34;4590:2;4575:18;;4568:62;-1:-1:-1;;;4661:2:1;4646:18;;4639:34;4705:3;4690:19;;4489:226::o;4720:397::-;4922:2;4904:21;;;4961:2;4941:18;;;4934:30;5000:34;4995:2;4980:18;;4973:62;-1:-1:-1;;;5066:2:1;5051:18;;5044:31;5107:3;5092:19;;4894:223::o;5122:401::-;5324:2;5306:21;;;5363:2;5343:18;;;5336:30;5402:34;5397:2;5382:18;;5375:62;-1:-1:-1;;;5468:2:1;5453:18;;5446:35;5513:3;5498:19;;5296:227::o;5528:400::-;5730:2;5712:21;;;5769:2;5749:18;;;5742:30;5808:34;5803:2;5788:18;;5781:62;-1:-1:-1;;;5874:2:1;5859:18;;5852:34;5918:3;5903:19;;5702:226::o;5933:401::-;6135:2;6117:21;;;6174:2;6154:18;;;6147:30;6213:34;6208:2;6193:18;;6186:62;-1:-1:-1;;;6279:2:1;6264:18;;6257:35;6324:3;6309:19;;6107:227::o;6339:177::-;6485:25;;;6473:2;6458:18;;6440:76::o;6521:184::-;6693:4;6681:17;;;;6663:36;;6651:2;6636:18;;6618:87::o;6710:128::-;;6781:1;6777:6;6774:1;6771:13;6768:2;;;6787:18;;:::i;:::-;-1:-1:-1;6823:9:1;;6758:80::o;6843:125::-;;6911:1;6908;6905:8;6902:2;;;6916:18;;:::i;:::-;-1:-1:-1;6953:9:1;;6892:76::o;6973:380::-;7058:1;7048:12;;7105:1;7095:12;;;7116:2;;7170:4;7162:6;7158:17;7148:27;;7116:2;7223;7215:6;7212:14;7192:18;7189:38;7186:2;;;7269:10;7264:3;7260:20;7257:1;7250:31;7304:4;7301:1;7294:15;7332:4;7329:1;7322:15;7186:2;;7028:325;;;:::o;7358:127::-;7419:10;7414:3;7410:20;7407:1;7400:31;7450:4;7447:1;7440:15;7474:4;7471:1;7464:15
Swarm Source
ipfs://a0656a325ce5d22fd85448ae543caf834bc7e38e77339f9b9e5ab0158b07b310
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.