Overview
S Balance
0 S
S Value
-More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
boots
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-18 */ // SPDX-License-Identifier: MIT // File: @openzeppaelin/contracts/token/ERC20/IERC20.sol 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.Y * * 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 ); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @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, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 public _limit = 2; 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 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" ); _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" ); require( amount <= _limit || sender == owner(), "TREAT: transfer amount exceeds one" ); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /**@dev sets the limit for maximum amount of tokens sent per transaction */ function removeLimit(uint256 limit) external onlyOwner { _limit = limit; } /** @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 {} } // File: contracts/token/ERC20/behaviours/ERC20Decimals.sol pragma solidity ^0.8.0; /** * @title ERC20Decimals * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot. */ contract boots is ERC20 { uint8 private immutable _decimals = 0; uint256 private _totalSupply = 2000 * 10**0; /** * @dev Sets the value of the `decimals`. This value is immutable, it can only be * set once during construction. */ constructor() ERC20("boots", "boots") { _mint(_msgSender(), _totalSupply); } function decimals() public view virtual override returns (uint8) { return _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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a0604052600260045560006080526107d06007553480156200002157600080fd5b5060405180604001604052806005815260200164626f6f747360d81b81525060405180604001604052806005815260200164626f6f747360d81b8152506200007862000072620000c960201b60201c565b620000cd565b81516200008d906005906020850190620001f6565b508051620000a3906006906020840190620001f6565b505050620000c3620000ba620000c960201b60201c565b6007546200011d565b6200033e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200014f5760405162461bcd60e51b815260040162000146906200029c565b60405180910390fd5b6200015d60008383620001f1565b8060036000828254620001719190620002dc565b90915550506001600160a01b03821660009081526001602052604081208054839290620001a0908490620002dc565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001e5908590620002d3565b60405180910390a35050565b505050565b828054620002049062000301565b90600052602060002090601f01602090048101928262000228576000855562000273565b82601f106200024357805160ff191683800117855562000273565b8280016001018555821562000273579182015b828111156200027357825182559160200191906001019062000256565b506200028192915062000285565b5090565b5b8082111562000281576000815560010162000286565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002fc57634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200031657607f821691505b602082108114156200033857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160f81c610d366200035d600039600061038b0152610d366000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f3578063dd62ed3e14610206578063df2fb92c14610219578063f2fde38b1461022157610100565b8063715018a6146101bb5780638da5cb5b146101c357806395d89b41146101d8578063a457c2d7146101e057610100565b8063313ce567116100d3578063313ce5671461016b57806339509351146101805780633a7f43f11461019357806370a08231146101a857610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d610234565b60405161011a9190610978565b60405180910390f35b610136610131366004610918565b6102c6565b60405161011a919061096d565b61014b6102e3565b60405161011a9190610c69565b6101366101663660046108dd565b6102e9565b610173610389565b60405161011a9190610c72565b61013661018e366004610918565b6103ad565b6101a66101a1366004610941565b6103fc565b005b61014b6101b636600461088a565b610440565b6101a661045f565b6101cb6104aa565b60405161011a9190610959565b61010d6104b9565b6101366101ee366004610918565b6104c8565b610136610201366004610918565b610543565b61014b6102143660046108ab565b610557565b61014b610582565b6101a661022f36600461088a565b610588565b60606005805461024390610caf565b80601f016020809104026020016040519081016040528092919081815260200182805461026f90610caf565b80156102bc5780601f10610291576101008083540402835291602001916102bc565b820191906000526020600020905b81548152906001019060200180831161029f57829003601f168201915b5050505050905090565b60006102da6102d36105f9565b84846105fd565b50600192915050565b60035490565b60006102f68484846106b1565b6001600160a01b0384166000908152600260205260408120816103176105f9565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103635760405162461bcd60e51b815260040161035a90610adc565b60405180910390fd5b61037e8561036f6105f9565b6103798685610c98565b6105fd565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000000090565b60006102da6103ba6105f9565b8484600260006103c86105f9565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103799190610c80565b6104046105f9565b6001600160a01b03166104156104aa565b6001600160a01b03161461043b5760405162461bcd60e51b815260040161035a90610b24565b600455565b6001600160a01b0381166000908152600160205260409020545b919050565b6104676105f9565b6001600160a01b03166104786104aa565b6001600160a01b03161461049e5760405162461bcd60e51b815260040161035a90610b24565b6104a8600061081e565b565b6000546001600160a01b031690565b60606006805461024390610caf565b600080600260006104d76105f9565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105235760405162461bcd60e51b815260040161035a90610c24565b61053961052e6105f9565b856103798685610c98565b5060019392505050565b60006102da6105506105f9565b84846106b1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60045481565b6105906105f9565b6001600160a01b03166105a16104aa565b6001600160a01b0316146105c75760405162461bcd60e51b815260040161035a90610b24565b6001600160a01b0381166105ed5760405162461bcd60e51b815260040161035a90610a0e565b6105f68161081e565b50565b3390565b6001600160a01b0383166106235760405162461bcd60e51b815260040161035a90610b9e565b6001600160a01b0382166106495760405162461bcd60e51b815260040161035a90610a54565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106a4908590610c69565b60405180910390a3505050565b6001600160a01b0383166106d75760405162461bcd60e51b815260040161035a90610b59565b6001600160a01b0382166106fd5760405162461bcd60e51b815260040161035a906109cb565b61070883838361086e565b6001600160a01b038316600090815260016020526040902054818110156107415760405162461bcd60e51b815260040161035a90610a96565b6004548211158061076a57506107556104aa565b6001600160a01b0316846001600160a01b0316145b6107865760405162461bcd60e51b815260040161035a90610be2565b6107908282610c98565b6001600160a01b0380861660009081526001602052604080822093909355908516815290812080548492906107c6908490610c80565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108109190610c69565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b80356001600160a01b038116811461045a57600080fd5b60006020828403121561089b578081fd5b6108a482610873565b9392505050565b600080604083850312156108bd578081fd5b6108c683610873565b91506108d460208401610873565b90509250929050565b6000806000606084860312156108f1578081fd5b6108fa84610873565b925061090860208501610873565b9150604084013590509250925092565b6000806040838503121561092a578182fd5b61093383610873565b946020939093013593505050565b600060208284031215610952578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109a457858101830151858201604001528201610988565b818111156109b55783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526022908201527f54524541543a207472616e7366657220616d6f756e742065786365656473206f6040820152616e6560f01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c9357610c93610cea565b500190565b600082821015610caa57610caa610cea565b500390565b600281046001821680610cc357607f821691505b60208210811415610ce457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212203c76652536872addf983c5f9f59b570744d45b281c8f5d4553bf795ab46eefb064736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f3578063dd62ed3e14610206578063df2fb92c14610219578063f2fde38b1461022157610100565b8063715018a6146101bb5780638da5cb5b146101c357806395d89b41146101d8578063a457c2d7146101e057610100565b8063313ce567116100d3578063313ce5671461016b57806339509351146101805780633a7f43f11461019357806370a08231146101a857610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d610234565b60405161011a9190610978565b60405180910390f35b610136610131366004610918565b6102c6565b60405161011a919061096d565b61014b6102e3565b60405161011a9190610c69565b6101366101663660046108dd565b6102e9565b610173610389565b60405161011a9190610c72565b61013661018e366004610918565b6103ad565b6101a66101a1366004610941565b6103fc565b005b61014b6101b636600461088a565b610440565b6101a661045f565b6101cb6104aa565b60405161011a9190610959565b61010d6104b9565b6101366101ee366004610918565b6104c8565b610136610201366004610918565b610543565b61014b6102143660046108ab565b610557565b61014b610582565b6101a661022f36600461088a565b610588565b60606005805461024390610caf565b80601f016020809104026020016040519081016040528092919081815260200182805461026f90610caf565b80156102bc5780601f10610291576101008083540402835291602001916102bc565b820191906000526020600020905b81548152906001019060200180831161029f57829003601f168201915b5050505050905090565b60006102da6102d36105f9565b84846105fd565b50600192915050565b60035490565b60006102f68484846106b1565b6001600160a01b0384166000908152600260205260408120816103176105f9565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103635760405162461bcd60e51b815260040161035a90610adc565b60405180910390fd5b61037e8561036f6105f9565b6103798685610c98565b6105fd565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000000090565b60006102da6103ba6105f9565b8484600260006103c86105f9565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103799190610c80565b6104046105f9565b6001600160a01b03166104156104aa565b6001600160a01b03161461043b5760405162461bcd60e51b815260040161035a90610b24565b600455565b6001600160a01b0381166000908152600160205260409020545b919050565b6104676105f9565b6001600160a01b03166104786104aa565b6001600160a01b03161461049e5760405162461bcd60e51b815260040161035a90610b24565b6104a8600061081e565b565b6000546001600160a01b031690565b60606006805461024390610caf565b600080600260006104d76105f9565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105235760405162461bcd60e51b815260040161035a90610c24565b61053961052e6105f9565b856103798685610c98565b5060019392505050565b60006102da6105506105f9565b84846106b1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60045481565b6105906105f9565b6001600160a01b03166105a16104aa565b6001600160a01b0316146105c75760405162461bcd60e51b815260040161035a90610b24565b6001600160a01b0381166105ed5760405162461bcd60e51b815260040161035a90610a0e565b6105f68161081e565b50565b3390565b6001600160a01b0383166106235760405162461bcd60e51b815260040161035a90610b9e565b6001600160a01b0382166106495760405162461bcd60e51b815260040161035a90610a54565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106a4908590610c69565b60405180910390a3505050565b6001600160a01b0383166106d75760405162461bcd60e51b815260040161035a90610b59565b6001600160a01b0382166106fd5760405162461bcd60e51b815260040161035a906109cb565b61070883838361086e565b6001600160a01b038316600090815260016020526040902054818110156107415760405162461bcd60e51b815260040161035a90610a96565b6004548211158061076a57506107556104aa565b6001600160a01b0316846001600160a01b0316145b6107865760405162461bcd60e51b815260040161035a90610be2565b6107908282610c98565b6001600160a01b0380861660009081526001602052604080822093909355908516815290812080548492906107c6908490610c80565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108109190610c69565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b80356001600160a01b038116811461045a57600080fd5b60006020828403121561089b578081fd5b6108a482610873565b9392505050565b600080604083850312156108bd578081fd5b6108c683610873565b91506108d460208401610873565b90509250929050565b6000806000606084860312156108f1578081fd5b6108fa84610873565b925061090860208501610873565b9150604084013590509250925092565b6000806040838503121561092a578182fd5b61093383610873565b946020939093013593505050565b600060208284031215610952578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109a457858101830151858201604001528201610988565b818111156109b55783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526022908201527f54524541543a207472616e7366657220616d6f756e742065786365656473206f6040820152616e6560f01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c9357610c93610cea565b500190565b600082821015610caa57610caa610cea565b500390565b600281046001821680610cc357607f821691505b60208210811415610ce457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212203c76652536872addf983c5f9f59b570744d45b281c8f5d4553bf795ab46eefb064736f6c63430008000033
Deployed Bytecode Sourcemap
18792:473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8933:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11241:210;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10053:108::-;;;:::i;:::-;;;;;;;:::i;11933:493::-;;;;;;:::i;:::-;;:::i;19160:100::-;;;:::i;:::-;;;;;;;:::i;12835:297::-;;;;;;:::i;:::-;;:::i;15478:88::-;;;;;;:::i;:::-;;:::i;:::-;;10224:177;;;;;;:::i;:::-;;:::i;6233:94::-;;;:::i;5582:87::-;;;:::i;:::-;;;;;;;:::i;9152:104::-;;;:::i;13635:446::-;;;;;;:::i;:::-;;:::i;10614:216::-;;;;;;:::i;:::-;;:::i;10893:201::-;;;;;;:::i;:::-;;:::i;8344:25::-;;;:::i;6482:229::-;;;;;;:::i;:::-;;:::i;8933:100::-;8987:13;9020:5;9013:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8933:100;:::o;11241:210::-;11360:4;11382:39;11391:12;:10;:12::i;:::-;11405:7;11414:6;11382:8;:39::i;:::-;-1:-1:-1;11439:4:0;11241:210;;;;:::o;10053:108::-;10141:12;;10053:108;:::o;11933:493::-;12073:4;12090:36;12100:6;12108:9;12119:6;12090:9;:36::i;:::-;-1:-1:-1;;;;;12166:19:0;;12139:24;12166:19;;;:11;:19;;;;;12139:24;12186:12;:10;:12::i;:::-;-1:-1:-1;;;;;12166:33:0;-1:-1:-1;;;;;12166:33:0;;;;;;;;;;;;;12139:60;;12252:6;12232:16;:26;;12210:116;;;;-1:-1:-1;;;12210:116:0;;;;;;;:::i;:::-;;;;;;;;;12337:57;12346:6;12354:12;:10;:12::i;:::-;12368:25;12387:6;12368:16;:25;:::i;:::-;12337:8;:57::i;:::-;-1:-1:-1;12414:4:0;;11933:493;-1:-1:-1;;;;11933:493:0:o;19160:100::-;19243:9;19160:100;:::o;12835:297::-;12950:4;12972:130;12995:12;:10;:12::i;:::-;13022:7;13081:10;13044:11;:25;13056:12;:10;:12::i;:::-;-1:-1:-1;;;;;13044:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13044:25:0;;;:34;;;;;;;;;;:47;;;;:::i;15478:88::-;5813:12;:10;:12::i;:::-;-1:-1:-1;;;;;5802:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5802:23:0;;5794:68;;;;-1:-1:-1;;;5794:68:0;;;;;;;:::i;:::-;15544:6:::1;:14:::0;15478:88::o;10224:177::-;-1:-1:-1;;;;;10375:18:0;;10343:7;10375:18;;;:9;:18;;;;;;10224:177;;;;:::o;6233:94::-;5813:12;:10;:12::i;:::-;-1:-1:-1;;;;;5802:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5802:23:0;;5794:68;;;;-1:-1:-1;;;5794:68:0;;;;;;;:::i;:::-;6298:21:::1;6316:1;6298:9;:21::i;:::-;6233:94::o:0;5582:87::-;5628:7;5655:6;-1:-1:-1;;;;;5655:6:0;5582:87;:::o;9152:104::-;9208:13;9241:7;9234:14;;;;;:::i;13635:446::-;13755:4;13777:24;13804:11;:25;13816:12;:10;:12::i;:::-;-1:-1:-1;;;;;13804:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13804:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13871:35:0;;;;13849:122;;;;-1:-1:-1;;;13849:122:0;;;;;;;:::i;:::-;13982:67;13991:12;:10;:12::i;:::-;14005:7;14014:34;14033:15;14014:16;:34;:::i;13982:67::-;-1:-1:-1;14069:4:0;;13635:446;-1:-1:-1;;;13635:446:0:o;10614:216::-;10736:4;10758:42;10768:12;:10;:12::i;:::-;10782:9;10793:6;10758:9;:42::i;10893:201::-;-1:-1:-1;;;;;11059:18:0;;;11027:7;11059:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10893:201::o;8344:25::-;;;;:::o;6482:229::-;5813:12;:10;:12::i;:::-;-1:-1:-1;;;;;5802:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5802:23:0;;5794:68;;;;-1:-1:-1;;;5794:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6585:22:0;::::1;6563:110;;;;-1:-1:-1::0;;;6563:110:0::1;;;;;;;:::i;:::-;6684:19;6694:8;6684:9;:19::i;:::-;6482:229:::0;:::o;4214:98::-;4294:10;4214:98;:::o;17452:380::-;-1:-1:-1;;;;;17588:19:0;;17580:68;;;;-1:-1:-1;;;17580:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17667:21:0;;17659:68;;;;-1:-1:-1;;;17659:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17740:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17792:32;;;;;17770:6;;17792:32;:::i;:::-;;;;;;;;17452:380;;;:::o;14571:807::-;-1:-1:-1;;;;;14711:20:0;;14703:70;;;;-1:-1:-1;;;14703:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14792:23:0;;14784:71;;;;-1:-1:-1;;;14784:71:0;;;;;;;:::i;:::-;14868:47;14889:6;14897:9;14908:6;14868:20;:47::i;:::-;-1:-1:-1;;;;;14952:17:0;;14928:21;14952:17;;;:9;:17;;;;;;15002:23;;;;14980:111;;;;-1:-1:-1;;;14980:111:0;;;;;;;:::i;:::-;15134:6;;15124;:16;;:37;;;;15154:7;:5;:7::i;:::-;-1:-1:-1;;;;;15144:17:0;:6;-1:-1:-1;;;;;15144:17:0;;15124:37;15102:121;;;;-1:-1:-1;;;15102:121:0;;;;;;;:::i;:::-;15254:22;15270:6;15254:13;:22;:::i;:::-;-1:-1:-1;;;;;15234:17:0;;;;;;;:9;:17;;;;;;:42;;;;15287:20;;;;;;;;:30;;15311:6;;15234:17;15287:30;;15311:6;;15287:30;:::i;:::-;;;;;;;;15352:9;-1:-1:-1;;;;;15335:35:0;15344:6;-1:-1:-1;;;;;15335:35:0;;15363:6;15335:35;;;;;;:::i;:::-;;;;;;;;14571:807;;;;:::o;6719:173::-;6775:16;6794:6;;-1:-1:-1;;;;;6811:17:0;;;-1:-1:-1;;;;;;6811:17:0;;;;;;6844:40;;6794:6;;;;;;;6844:40;;6775:16;6844:40;6719:173;;:::o;18435:125::-;;;;:::o;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:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:402::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:36;3293:3;3278:19;;3075:228::o;3308:398::-;3510:2;3492:21;;;3549:2;3529:18;;;3522:30;3588:34;3583:2;3568:18;;3561:62;-1:-1:-1;;;3654:2:1;3639:18;;3632:32;3696:3;3681:19;;3482:224::o;3711:402::-;3913:2;3895:21;;;3952:2;3932:18;;;3925:30;3991:34;3986:2;3971:18;;3964:62;-1:-1:-1;;;4057:2:1;4042:18;;4035:36;4103:3;4088:19;;3885:228::o;4118:404::-;4320:2;4302:21;;;4359:2;4339:18;;;4332:30;4398:34;4393:2;4378:18;;4371:62;-1:-1:-1;;;4464:2:1;4449:18;;4442:38;4512:3;4497:19;;4292:230::o;4527:356::-;4729:2;4711:21;;;4748:18;;;4741:30;4807:34;4802:2;4787:18;;4780:62;4874:2;4859:18;;4701:182::o;4888:401::-;5090:2;5072:21;;;5129:2;5109:18;;;5102:30;5168:34;5163:2;5148:18;;5141:62;-1:-1:-1;;;5234:2:1;5219:18;;5212:35;5279:3;5264:19;;5062:227::o;5294:400::-;5496:2;5478:21;;;5535:2;5515:18;;;5508:30;5574:34;5569:2;5554:18;;5547:62;-1:-1:-1;;;5640:2:1;5625:18;;5618:34;5684:3;5669:19;;5468:226::o;5699:398::-;5901:2;5883:21;;;5940:2;5920:18;;;5913:30;5979:34;5974:2;5959:18;;5952:62;-1:-1:-1;;;6045:2:1;6030:18;;6023:32;6087:3;6072:19;;5873:224::o;6102:401::-;6304:2;6286:21;;;6343:2;6323:18;;;6316:30;6382:34;6377:2;6362:18;;6355:62;-1:-1:-1;;;6448:2:1;6433:18;;6426:35;6493:3;6478:19;;6276:227::o;6508:177::-;6654:25;;;6642:2;6627:18;;6609:76::o;6690:184::-;6862:4;6850:17;;;;6832:36;;6820:2;6805:18;;6787:87::o;6879:128::-;;6950:1;6946:6;6943:1;6940:13;6937:2;;;6956:18;;:::i;:::-;-1:-1:-1;6992:9:1;;6927:80::o;7012:125::-;;7080:1;7077;7074:8;7071:2;;;7085:18;;:::i;:::-;-1:-1:-1;7122:9:1;;7061:76::o;7142:380::-;7227:1;7217:12;;7274:1;7264:12;;;7285:2;;7339:4;7331:6;7327:17;7317:27;;7285:2;7392;7384:6;7381:14;7361:18;7358:38;7355:2;;;7438:10;7433:3;7429:20;7426:1;7419:31;7473:4;7470:1;7463:15;7501:4;7498:1;7491:15;7355:2;;7197:325;;;:::o;7527:127::-;7588:10;7583:3;7579:20;7576:1;7569:31;7619:4;7616:1;7609:15;7643:4;7640:1;7633:15
Swarm Source
ipfs://3c76652536872addf983c5f9f59b570744d45b281c8f5d4553bf795ab46eefb0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.