Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 602 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21249006 | 1 hr ago | IN | 0 ETH | 0.00050579 | ||||
Transfer | 21248997 | 1 hr ago | IN | 0 ETH | 0.00034371 | ||||
Transfer | 21248989 | 1 hr ago | IN | 0 ETH | 0.00037327 | ||||
Transfer | 21248979 | 1 hr ago | IN | 0 ETH | 0.00039564 | ||||
Transfer | 21248973 | 1 hr ago | IN | 0 ETH | 0.00033725 | ||||
Transfer | 21248967 | 1 hr ago | IN | 0 ETH | 0.00042673 | ||||
Transfer | 21248963 | 1 hr ago | IN | 0 ETH | 0.00043988 | ||||
Approve | 21241476 | 26 hrs ago | IN | 0 ETH | 0.00043522 | ||||
Approve | 21227705 | 3 days ago | IN | 0 ETH | 0.00046945 | ||||
Approve | 21221394 | 3 days ago | IN | 0 ETH | 0.00066477 | ||||
Approve | 21219383 | 4 days ago | IN | 0 ETH | 0.00053875 | ||||
Approve | 21216577 | 4 days ago | IN | 0 ETH | 0.00109526 | ||||
Approve | 21216533 | 4 days ago | IN | 0 ETH | 0.0011364 | ||||
Approve | 21215981 | 4 days ago | IN | 0 ETH | 0.00105282 | ||||
Approve | 21215965 | 4 days ago | IN | 0 ETH | 0.00117692 | ||||
Approve | 21215859 | 4 days ago | IN | 0 ETH | 0.00113294 | ||||
Approve | 21215376 | 4 days ago | IN | 0 ETH | 0.00076819 | ||||
Approve | 21189951 | 8 days ago | IN | 0 ETH | 0.00068247 | ||||
Approve | 21187857 | 8 days ago | IN | 0 ETH | 0.00133366 | ||||
Transfer | 21177745 | 10 days ago | IN | 0 ETH | 0.00065215 | ||||
Transfer | 21177212 | 10 days ago | IN | 0 ETH | 0.00065147 | ||||
Approve | 21175814 | 10 days ago | IN | 0 ETH | 0.00212977 | ||||
Transfer | 21162652 | 12 days ago | IN | 0 ETH | 0.00066231 | ||||
Approve | 21162482 | 12 days ago | IN | 0 ETH | 0.00099892 | ||||
Approve | 21161965 | 12 days ago | IN | 0 ETH | 0.00078978 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TRUMPMUSK
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-01 */ /** *https://x.com/TrumpMusk_MAGA *https://t.me/trumpmusketh *https://trumpmusk.world */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual 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; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ 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; } /** * @dev See {IERC20-allowance}. */ 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 from, address to, uint256 value) internal { if (from == address(0)) { revert("ERC20: transfer from the zero address"); } if (to == address(0)) { revert("ERC20: transfer to the zero address"); } _update(from, 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("ERC20: transfer amount exceeds balance"); } 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("ERC20: mint to the zero address"); } _update(address(0), account, value); } /** * @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("ERC20: burn from the zero address"); } _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("ERC20: approve from the zero address"); } if (spender == address(0)) { revert("ERC20: approve to the zero address"); } _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) { if (currentAllowance < value) { revert("ERC20: insufficient allowance"); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } } // File contracts/TRUMPMUSK.sol pragma solidity ^0.8.20; contract TRUMPMUSK is ERC20, ERC20Burnable, Ownable { constructor(address initialOwner) ERC20("Memecoin Trump Musk", "TMAGA") // Ownable(initialOwner) { require(initialOwner != address(0), "Invalid owner address"); _mint(initialOwner, 420690000000000 * 10 ** decimals()); // } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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
608060405234801561000f575f80fd5b506040516121df3803806121df833981810160405281019061003191906105ae565b806040518060400160405280601381526020017f4d656d65636f696e205472756d70204d75736b000000000000000000000000008152506040518060400160405280600581526020017f544d41474100000000000000000000000000000000000000000000000000000081525081600390816100ad9190610813565b5080600490816100bd9190610813565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610130575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161012791906108f1565b60405180910390fd5b61013f816101ef60201b60201c565b505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101a590610964565b60405180910390fd5b6101e9816101c06102b260201b60201c565b600a6101cc9190610aea565b66017e9d8602b4006101de9190610b34565b6102ba60201b60201c565b50610cc6565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031f90610bbf565b60405180910390fd5b6103395f838361033d60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361038d578060025f8282546103819190610bdd565b92505081905550610455565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040790610c80565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361049c578060025f82825403925050819055506104e6565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105439190610cad565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61057d82610554565b9050919050565b61058d81610573565b8114610597575f80fd5b50565b5f815190506105a881610584565b92915050565b5f602082840312156105c3576105c2610550565b5b5f6105d08482850161059a565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061065457607f821691505b60208210810361066757610666610610565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261068e565b6106d3868361068e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61071761071261070d846106eb565b6106f4565b6106eb565b9050919050565b5f819050919050565b610730836106fd565b61074461073c8261071e565b84845461069a565b825550505050565b5f90565b61075861074c565b610763818484610727565b505050565b5b818110156107865761077b5f82610750565b600181019050610769565b5050565b601f8211156107cb5761079c8161066d565b6107a58461067f565b810160208510156107b4578190505b6107c86107c08561067f565b830182610768565b50505b505050565b5f82821c905092915050565b5f6107eb5f19846008026107d0565b1980831691505092915050565b5f61080383836107dc565b9150826002028217905092915050565b61081c826105d9565b67ffffffffffffffff811115610835576108346105e3565b5b61083f825461063d565b61084a82828561078a565b5f60209050601f83116001811461087b575f8415610869578287015190505b61087385826107f8565b8655506108da565b601f1984166108898661066d565b5f5b828110156108b05784890151825560018201915060208501945060208101905061088b565b868310156108cd57848901516108c9601f8916826107dc565b8355505b6001600288020188555050505b505050505050565b6108eb81610573565b82525050565b5f6020820190506109045f8301846108e2565b92915050565b5f82825260208201905092915050565b7f496e76616c6964206f776e6572206164647265737300000000000000000000005f82015250565b5f61094e60158361090a565b91506109598261091a565b602082019050919050565b5f6020820190508181035f83015261097b81610942565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610a04578086048111156109e0576109df610982565b5b60018516156109ef5780820291505b80810290506109fd856109af565b94506109c4565b94509492505050565b5f82610a1c5760019050610ad7565b81610a29575f9050610ad7565b8160018114610a3f5760028114610a4957610a78565b6001915050610ad7565b60ff841115610a5b57610a5a610982565b5b8360020a915084821115610a7257610a71610982565b5b50610ad7565b5060208310610133831016604e8410600b8410161715610aad5782820a905083811115610aa857610aa7610982565b5b610ad7565b610aba84848460016109bb565b92509050818404811115610ad157610ad0610982565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610af4826106eb565b9150610aff83610ade565b9250610b2c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610a0d565b905092915050565b5f610b3e826106eb565b9150610b49836106eb565b9250828202610b57816106eb565b91508282048414831517610b6e57610b6d610982565b5b5092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610ba9601f8361090a565b9150610bb482610b75565b602082019050919050565b5f6020820190508181035f830152610bd681610b9d565b9050919050565b5f610be7826106eb565b9150610bf2836106eb565b9250828201905080821115610c0a57610c09610982565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f610c6a60268361090a565b9150610c7582610c10565b604082019050919050565b5f6020820190508181035f830152610c9781610c5e565b9050919050565b610ca7816106eb565b82525050565b5f602082019050610cc05f830184610c9e565b92915050565b61150c80610cd35f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a57806395d89b411161006457806395d89b4114610236578063a9059cbb14610254578063dd62ed3e14610284578063f2fde38b146102b4576100e8565b8063715018a6146101f257806379cc6790146101fc5780638da5cb5b14610218576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806342966c68146101a657806370a08231146101c2576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102d0565b6040516101019190610dd3565b60405180910390f35b610124600480360381019061011f9190610e84565b610360565b6040516101319190610edc565b60405180910390f35b610142610382565b60405161014f9190610f04565b60405180910390f35b610172600480360381019061016d9190610f1d565b61038b565b60405161017f9190610edc565b60405180910390f35b6101906103b9565b60405161019d9190610f88565b60405180910390f35b6101c060048036038101906101bb9190610fa1565b6103c1565b005b6101dc60048036038101906101d79190610fcc565b6103d5565b6040516101e99190610f04565b60405180910390f35b6101fa61041a565b005b61021660048036038101906102119190610e84565b61042d565b005b61022061044d565b60405161022d9190611006565b60405180910390f35b61023e610475565b60405161024b9190610dd3565b60405180910390f35b61026e60048036038101906102699190610e84565b610505565b60405161027b9190610edc565b60405180910390f35b61029e6004803603810190610299919061101f565b610527565b6040516102ab9190610f04565b60405180910390f35b6102ce60048036038101906102c99190610fcc565b6105a9565b005b6060600380546102df9061108a565b80601f016020809104026020016040519081016040528092919081815260200182805461030b9061108a565b80156103565780601f1061032d57610100808354040283529160200191610356565b820191905f5260205f20905b81548152906001019060200180831161033957829003601f168201915b5050505050905090565b5f8061036a61062d565b9050610377818585610634565b600191505092915050565b5f600254905090565b5f8061039561062d565b90506103a2858285610646565b6103ad8585856106d2565b60019150509392505050565b5f6012905090565b6103d26103cc61062d565b826107be565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61042261083b565b61042b5f6108c2565b565b61043f8261043961062d565b83610646565b61044982826107be565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104849061108a565b80601f01602080910402602001604051908101604052809291908181526020018280546104b09061108a565b80156104fb5780601f106104d2576101008083540402835291602001916104fb565b820191905f5260205f20905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b5f8061050f61062d565b905061051c8185856106d2565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105b161083b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610621575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106189190611006565b60405180910390fd5b61062a816108c2565b50565b5f33905090565b6106418383836001610985565b505050565b5f6106518484610527565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106cc57818110156106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b490611104565b60405180910390fd5b6106cb84848484035f610985565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073790611192565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611220565b60405180910390fd5b6107b9838383610b50565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610823906112ae565b60405180910390fd5b610837825f83610b50565b5050565b61084361062d565b73ffffffffffffffffffffffffffffffffffffffff1661086161044d565b73ffffffffffffffffffffffffffffffffffffffff16146108c05761088461062d565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108b79190611006565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea9061133c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a58906113ca565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b4a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b419190610f04565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba0578060025f828254610b949190611415565b92505081905550610c68565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a906114b8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610caf578060025f8282540392505081905550610cf9565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d569190610f04565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610da582610d63565b610daf8185610d6d565b9350610dbf818560208601610d7d565b610dc881610d8b565b840191505092915050565b5f6020820190508181035f830152610deb8184610d9b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e2082610df7565b9050919050565b610e3081610e16565b8114610e3a575f80fd5b50565b5f81359050610e4b81610e27565b92915050565b5f819050919050565b610e6381610e51565b8114610e6d575f80fd5b50565b5f81359050610e7e81610e5a565b92915050565b5f8060408385031215610e9a57610e99610df3565b5b5f610ea785828601610e3d565b9250506020610eb885828601610e70565b9150509250929050565b5f8115159050919050565b610ed681610ec2565b82525050565b5f602082019050610eef5f830184610ecd565b92915050565b610efe81610e51565b82525050565b5f602082019050610f175f830184610ef5565b92915050565b5f805f60608486031215610f3457610f33610df3565b5b5f610f4186828701610e3d565b9350506020610f5286828701610e3d565b9250506040610f6386828701610e70565b9150509250925092565b5f60ff82169050919050565b610f8281610f6d565b82525050565b5f602082019050610f9b5f830184610f79565b92915050565b5f60208284031215610fb657610fb5610df3565b5b5f610fc384828501610e70565b91505092915050565b5f60208284031215610fe157610fe0610df3565b5b5f610fee84828501610e3d565b91505092915050565b61100081610e16565b82525050565b5f6020820190506110195f830184610ff7565b92915050565b5f806040838503121561103557611034610df3565b5b5f61104285828601610e3d565b925050602061105385828601610e3d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110a157607f821691505b6020821081036110b4576110b361105d565b5b50919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6110ee601d83610d6d565b91506110f9826110ba565b602082019050919050565b5f6020820190508181035f83015261111b816110e2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61117c602583610d6d565b915061118782611122565b604082019050919050565b5f6020820190508181035f8301526111a981611170565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61120a602383610d6d565b9150611215826111b0565b604082019050919050565b5f6020820190508181035f830152611237816111fe565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611298602183610d6d565b91506112a38261123e565b604082019050919050565b5f6020820190508181035f8301526112c58161128c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611326602483610d6d565b9150611331826112cc565b604082019050919050565b5f6020820190508181035f8301526113538161131a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113b4602283610d6d565b91506113bf8261135a565b604082019050919050565b5f6020820190508181035f8301526113e1816113a8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61141f82610e51565b915061142a83610e51565b9250828201905080821115611442576114416113e8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6114a2602683610d6d565b91506114ad82611448565b604082019050919050565b5f6020820190508181035f8301526114cf81611496565b905091905056fea2646970667358221220a6f0ea8470950c1254c6bd686d042945ea708d0fd91066be2071e393a5a3224d64736f6c634300081a0033000000000000000000000000193a8d8e811fe26b1494d19fe1e34e7c90aed6fa
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a57806395d89b411161006457806395d89b4114610236578063a9059cbb14610254578063dd62ed3e14610284578063f2fde38b146102b4576100e8565b8063715018a6146101f257806379cc6790146101fc5780638da5cb5b14610218576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806342966c68146101a657806370a08231146101c2576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102d0565b6040516101019190610dd3565b60405180910390f35b610124600480360381019061011f9190610e84565b610360565b6040516101319190610edc565b60405180910390f35b610142610382565b60405161014f9190610f04565b60405180910390f35b610172600480360381019061016d9190610f1d565b61038b565b60405161017f9190610edc565b60405180910390f35b6101906103b9565b60405161019d9190610f88565b60405180910390f35b6101c060048036038101906101bb9190610fa1565b6103c1565b005b6101dc60048036038101906101d79190610fcc565b6103d5565b6040516101e99190610f04565b60405180910390f35b6101fa61041a565b005b61021660048036038101906102119190610e84565b61042d565b005b61022061044d565b60405161022d9190611006565b60405180910390f35b61023e610475565b60405161024b9190610dd3565b60405180910390f35b61026e60048036038101906102699190610e84565b610505565b60405161027b9190610edc565b60405180910390f35b61029e6004803603810190610299919061101f565b610527565b6040516102ab9190610f04565b60405180910390f35b6102ce60048036038101906102c99190610fcc565b6105a9565b005b6060600380546102df9061108a565b80601f016020809104026020016040519081016040528092919081815260200182805461030b9061108a565b80156103565780601f1061032d57610100808354040283529160200191610356565b820191905f5260205f20905b81548152906001019060200180831161033957829003601f168201915b5050505050905090565b5f8061036a61062d565b9050610377818585610634565b600191505092915050565b5f600254905090565b5f8061039561062d565b90506103a2858285610646565b6103ad8585856106d2565b60019150509392505050565b5f6012905090565b6103d26103cc61062d565b826107be565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61042261083b565b61042b5f6108c2565b565b61043f8261043961062d565b83610646565b61044982826107be565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104849061108a565b80601f01602080910402602001604051908101604052809291908181526020018280546104b09061108a565b80156104fb5780601f106104d2576101008083540402835291602001916104fb565b820191905f5260205f20905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b5f8061050f61062d565b905061051c8185856106d2565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105b161083b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610621575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106189190611006565b60405180910390fd5b61062a816108c2565b50565b5f33905090565b6106418383836001610985565b505050565b5f6106518484610527565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106cc57818110156106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b490611104565b60405180910390fd5b6106cb84848484035f610985565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073790611192565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611220565b60405180910390fd5b6107b9838383610b50565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610823906112ae565b60405180910390fd5b610837825f83610b50565b5050565b61084361062d565b73ffffffffffffffffffffffffffffffffffffffff1661086161044d565b73ffffffffffffffffffffffffffffffffffffffff16146108c05761088461062d565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108b79190611006565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea9061133c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a58906113ca565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b4a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b419190610f04565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba0578060025f828254610b949190611415565b92505081905550610c68565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a906114b8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610caf578060025f8282540392505081905550610cf9565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d569190610f04565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610da582610d63565b610daf8185610d6d565b9350610dbf818560208601610d7d565b610dc881610d8b565b840191505092915050565b5f6020820190508181035f830152610deb8184610d9b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e2082610df7565b9050919050565b610e3081610e16565b8114610e3a575f80fd5b50565b5f81359050610e4b81610e27565b92915050565b5f819050919050565b610e6381610e51565b8114610e6d575f80fd5b50565b5f81359050610e7e81610e5a565b92915050565b5f8060408385031215610e9a57610e99610df3565b5b5f610ea785828601610e3d565b9250506020610eb885828601610e70565b9150509250929050565b5f8115159050919050565b610ed681610ec2565b82525050565b5f602082019050610eef5f830184610ecd565b92915050565b610efe81610e51565b82525050565b5f602082019050610f175f830184610ef5565b92915050565b5f805f60608486031215610f3457610f33610df3565b5b5f610f4186828701610e3d565b9350506020610f5286828701610e3d565b9250506040610f6386828701610e70565b9150509250925092565b5f60ff82169050919050565b610f8281610f6d565b82525050565b5f602082019050610f9b5f830184610f79565b92915050565b5f60208284031215610fb657610fb5610df3565b5b5f610fc384828501610e70565b91505092915050565b5f60208284031215610fe157610fe0610df3565b5b5f610fee84828501610e3d565b91505092915050565b61100081610e16565b82525050565b5f6020820190506110195f830184610ff7565b92915050565b5f806040838503121561103557611034610df3565b5b5f61104285828601610e3d565b925050602061105385828601610e3d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110a157607f821691505b6020821081036110b4576110b361105d565b5b50919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6110ee601d83610d6d565b91506110f9826110ba565b602082019050919050565b5f6020820190508181035f83015261111b816110e2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61117c602583610d6d565b915061118782611122565b604082019050919050565b5f6020820190508181035f8301526111a981611170565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61120a602383610d6d565b9150611215826111b0565b604082019050919050565b5f6020820190508181035f830152611237816111fe565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611298602183610d6d565b91506112a38261123e565b604082019050919050565b5f6020820190508181035f8301526112c58161128c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611326602483610d6d565b9150611331826112cc565b604082019050919050565b5f6020820190508181035f8301526113538161131a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6113b4602283610d6d565b91506113bf8261135a565b604082019050919050565b5f6020820190508181035f8301526113e1816113a8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61141f82610e51565b915061142a83610e51565b9250828201905080821115611442576114416113e8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6114a2602683610d6d565b91506114ad82611448565b604082019050919050565b5f6020820190508181035f8301526114cf81611496565b905091905056fea2646970667358221220a6f0ea8470950c1254c6bd686d042945ea708d0fd91066be2071e393a5a3224d64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000193a8d8e811fe26b1494d19fe1e34e7c90aed6fa
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x193A8d8E811fE26b1494d19fe1E34e7C90aED6FA
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000193a8d8e811fe26b1494d19fe1e34e7c90aed6fa
Deployed Bytecode Sourcemap
20194:332:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9566:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11859:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10668:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12659:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10519:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19543:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10830:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3505:103;;;:::i;:::-;;19961:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2830:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9776:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11153:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11398:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3763:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9566:91;9611:13;9644:5;9637:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9566:91;:::o;11859:190::-;11932:4;11949:13;11965:12;:10;:12::i;:::-;11949:28;;11988:31;11997:5;12004:7;12013:5;11988:8;:31::i;:::-;12037:4;12030:11;;;11859:190;;;;:::o;10668:99::-;10720:7;10747:12;;10740:19;;10668:99;:::o;12659:249::-;12746:4;12763:15;12781:12;:10;:12::i;:::-;12763:30;;12804:37;12820:4;12826:7;12835:5;12804:15;:37::i;:::-;12852:26;12862:4;12868:2;12872:5;12852:9;:26::i;:::-;12896:4;12889:11;;;12659:249;;;;;:::o;10519:84::-;10568:5;10593:2;10586:9;;10519:84;:::o;19543:89::-;19598:26;19604:12;:10;:12::i;:::-;19618:5;19598;:26::i;:::-;19543:89;:::o;10830:118::-;10895:7;10922:9;:18;10932:7;10922:18;;;;;;;;;;;;;;;;10915:25;;10830:118;;;:::o;3505:103::-;2716:13;:11;:13::i;:::-;3570:30:::1;3597:1;3570:18;:30::i;:::-;3505:103::o:0;19961:161::-;20037:45;20053:7;20062:12;:10;:12::i;:::-;20076:5;20037:15;:45::i;:::-;20093:21;20099:7;20108:5;20093;:21::i;:::-;19961:161;;:::o;2830:87::-;2876:7;2903:6;;;;;;;;;;;2896:13;;2830:87;:::o;9776:95::-;9823:13;9856:7;9849:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9776:95;:::o;11153:182::-;11222:4;11239:13;11255:12;:10;:12::i;:::-;11239:28;;11278:27;11288:5;11295:2;11299:5;11278:9;:27::i;:::-;11323:4;11316:11;;;11153:182;;;;:::o;11398:142::-;11478:7;11505:11;:18;11517:5;11505:18;;;;;;;;;;;;;;;:27;11524:7;11505:27;;;;;;;;;;;;;;;;11498:34;;11398:142;;;;:::o;3763:220::-;2716:13;:11;:13::i;:::-;3868:1:::1;3848:22;;:8;:22;;::::0;3844:93:::1;;3922:1;3894:31;;;;;;;;;;;:::i;:::-;;;;;;;;3844:93;3947:28;3966:8;3947:18;:28::i;:::-;3763:220:::0;:::o;835:98::-;888:7;915:10;908:17;;835:98;:::o;16735:130::-;16820:37;16829:5;16836:7;16845:5;16852:4;16820:8;:37::i;:::-;16735:130;;;:::o;18480:459::-;18580:24;18607:25;18617:5;18624:7;18607:9;:25::i;:::-;18580:52;;18667:17;18647:16;:37;18643:289;;18724:5;18705:16;:24;18701:104;;;18750:39;;;;;;;;;;:::i;:::-;;;;;;;;18701:104;18848:57;18857:5;18864:7;18892:5;18873:16;:24;18899:5;18848:8;:57::i;:::-;18643:289;18569:370;18480:459;;;:::o;13293:324::-;13393:1;13377:18;;:4;:18;;;13373:98;;13412:47;;;;;;;;;;:::i;:::-;;;;;;;;13373:98;13499:1;13485:16;;:2;:16;;;13481:94;;13518:45;;;;;;;;;;:::i;:::-;;;;;;;;13481:94;13585:24;13593:4;13599:2;13603:5;13585:7;:24::i;:::-;13293:324;;;:::o;15965:217::-;16055:1;16036:21;;:7;:21;;;16032:97;;16074:43;;;;;;;;;;:::i;:::-;;;;;;;;16032:97;16139:35;16147:7;16164:1;16168:5;16139:7;:35::i;:::-;15965:217;;:::o;2995:166::-;3066:12;:10;:12::i;:::-;3055:23;;:7;:5;:7::i;:::-;:23;;;3051:103;;3129:12;:10;:12::i;:::-;3102:40;;;;;;;;;;;:::i;:::-;;;;;;;;3051:103;2995:166::o;4143:191::-;4217:16;4236:6;;;;;;;;;;;4217:25;;4262:8;4253:6;;:17;;;;;;;;;;;;;;;;;;4317:8;4286:40;;4307:8;4286:40;;;;;;;;;;;;4206:128;4143:191;:::o;17732:456::-;17862:1;17845:19;;:5;:19;;;17841:98;;17881:46;;;;;;;;;;:::i;:::-;;;;;;;;17841:98;17972:1;17953:21;;:7;:21;;;17949:98;;17991:44;;;;;;;;;;:::i;:::-;;;;;;;;17949:98;18087:5;18057:11;:18;18069:5;18057:18;;;;;;;;;;;;;;;:27;18076:7;18057:27;;;;;;;;;;;;;;;:35;;;;18107:9;18103:78;;;18154:7;18138:31;;18147:5;18138:31;;;18163:5;18138:31;;;;;;:::i;:::-;;;;;;;;18103:78;17732:456;;;;:::o;13941:1126::-;14047:1;14031:18;;:4;:18;;;14027:543;;14185:5;14169:12;;:21;;;;;;;:::i;:::-;;;;;;;;14027:543;;;14223:19;14245:9;:15;14255:4;14245:15;;;;;;;;;;;;;;;;14223:37;;14293:5;14279:11;:19;14275:108;;;14319:48;;;;;;;;;;:::i;:::-;;;;;;;;14275:108;14538:5;14524:11;:19;14506:9;:15;14516:4;14506:15;;;;;;;;;;;;;;;:37;;;;14208:362;14027:543;14600:1;14586:16;;:2;:16;;;14582:435;;14768:5;14752:12;;:21;;;;;;;;;;;14582:435;;;14985:5;14968:9;:13;14978:2;14968:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;14582:435;15049:2;15034:25;;15043:4;15034:25;;;15053:5;15034:25;;;;;;:::i;:::-;;;;;;;;13941:1126;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:179::-;6900:31;6896:1;6888:6;6884:14;6877:55;6760:179;:::o;6945:366::-;7087:3;7108:67;7172:2;7167:3;7108:67;:::i;:::-;7101:74;;7184:93;7273:3;7184:93;:::i;:::-;7302:2;7297:3;7293:12;7286:19;;6945:366;;;:::o;7317:419::-;7483:4;7521:2;7510:9;7506:18;7498:26;;7570:9;7564:4;7560:20;7556:1;7545:9;7541:17;7534:47;7598:131;7724:4;7598:131;:::i;:::-;7590:139;;7317:419;;;:::o;7742:224::-;7882:34;7878:1;7870:6;7866:14;7859:58;7951:7;7946:2;7938:6;7934:15;7927:32;7742:224;:::o;7972:366::-;8114:3;8135:67;8199:2;8194:3;8135:67;:::i;:::-;8128:74;;8211:93;8300:3;8211:93;:::i;:::-;8329:2;8324:3;8320:12;8313:19;;7972:366;;;:::o;8344:419::-;8510:4;8548:2;8537:9;8533:18;8525:26;;8597:9;8591:4;8587:20;8583:1;8572:9;8568:17;8561:47;8625:131;8751:4;8625:131;:::i;:::-;8617:139;;8344:419;;;:::o;8769:222::-;8909:34;8905:1;8897:6;8893:14;8886:58;8978:5;8973:2;8965:6;8961:15;8954:30;8769:222;:::o;8997:366::-;9139:3;9160:67;9224:2;9219:3;9160:67;:::i;:::-;9153:74;;9236:93;9325:3;9236:93;:::i;:::-;9354:2;9349:3;9345:12;9338:19;;8997:366;;;:::o;9369:419::-;9535:4;9573:2;9562:9;9558:18;9550:26;;9622:9;9616:4;9612:20;9608:1;9597:9;9593:17;9586:47;9650:131;9776:4;9650:131;:::i;:::-;9642:139;;9369:419;;;:::o;9794:220::-;9934:34;9930:1;9922:6;9918:14;9911:58;10003:3;9998:2;9990:6;9986:15;9979:28;9794:220;:::o;10020:366::-;10162:3;10183:67;10247:2;10242:3;10183:67;:::i;:::-;10176:74;;10259:93;10348:3;10259:93;:::i;:::-;10377:2;10372:3;10368:12;10361:19;;10020:366;;;:::o;10392:419::-;10558:4;10596:2;10585:9;10581:18;10573:26;;10645:9;10639:4;10635:20;10631:1;10620:9;10616:17;10609:47;10673:131;10799:4;10673:131;:::i;:::-;10665:139;;10392:419;;;:::o;10817:223::-;10957:34;10953:1;10945:6;10941:14;10934:58;11026:6;11021:2;11013:6;11009:15;11002:31;10817:223;:::o;11046:366::-;11188:3;11209:67;11273:2;11268:3;11209:67;:::i;:::-;11202:74;;11285:93;11374:3;11285:93;:::i;:::-;11403:2;11398:3;11394:12;11387:19;;11046:366;;;:::o;11418:419::-;11584:4;11622:2;11611:9;11607:18;11599:26;;11671:9;11665:4;11661:20;11657:1;11646:9;11642:17;11635:47;11699:131;11825:4;11699:131;:::i;:::-;11691:139;;11418:419;;;:::o;11843:221::-;11983:34;11979:1;11971:6;11967:14;11960:58;12052:4;12047:2;12039:6;12035:15;12028:29;11843:221;:::o;12070:366::-;12212:3;12233:67;12297:2;12292:3;12233:67;:::i;:::-;12226:74;;12309:93;12398:3;12309:93;:::i;:::-;12427:2;12422:3;12418:12;12411:19;;12070:366;;;:::o;12442:419::-;12608:4;12646:2;12635:9;12631:18;12623:26;;12695:9;12689:4;12685:20;12681:1;12670:9;12666:17;12659:47;12723:131;12849:4;12723:131;:::i;:::-;12715:139;;12442:419;;;:::o;12867:180::-;12915:77;12912:1;12905:88;13012:4;13009:1;13002:15;13036:4;13033:1;13026:15;13053:191;13093:3;13112:20;13130:1;13112:20;:::i;:::-;13107:25;;13146:20;13164:1;13146:20;:::i;:::-;13141:25;;13189:1;13186;13182:9;13175:16;;13210:3;13207:1;13204:10;13201:36;;;13217:18;;:::i;:::-;13201:36;13053:191;;;;:::o;13250:225::-;13390:34;13386:1;13378:6;13374:14;13367:58;13459:8;13454:2;13446:6;13442:15;13435:33;13250:225;:::o;13481:366::-;13623:3;13644:67;13708:2;13703:3;13644:67;:::i;:::-;13637:74;;13720:93;13809:3;13720:93;:::i;:::-;13838:2;13833:3;13829:12;13822:19;;13481:366;;;:::o;13853:419::-;14019:4;14057:2;14046:9;14042:18;14034:26;;14106:9;14100:4;14096:20;14092:1;14081:9;14077:17;14070:47;14134:131;14260:4;14134:131;:::i;:::-;14126:139;;13853:419;;;:::o
Swarm Source
ipfs://a6f0ea8470950c1254c6bd686d042945ea708d0fd91066be2071e393a5a3224d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.