Source Code
Latest 1 from a total of 1 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Make It Flox | 2586265 | 663 days ago | IN | 0 FRAX | 0.00000431 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Floxdotlol
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.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);
}
/**
* @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 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;
}
}
/**
* @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 Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @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.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
/**
* @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.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the ERC may not emit
* these events, as it isn't required by the specification.
*/
contract Floxdotlol is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint256 public amt;
uint256 public numOfAccounts;
mapping(uint256 num => address account) public indexToAccountMap;
mapping(address account => uint256 num) public accountToIndexMap;
uint256 public makeItFloxIndex;
bool initialized;
function initialize (string memory name_, string memory symbol_, address delegationRegistry, address initialDelegate) public virtual {
if (initialized) {
revert("initialized");
}
initialized = true;
_name = name_;
_symbol = symbol_;
makeItFloxIndex = 1;
amt = 707000000000000000000;
delegationRegistry.call(abi.encodeWithSignature("setDelegationForSelf(address)", initialDelegate));
delegationRegistry.call(abi.encodeWithSignature("disableSelfManagingDelegations()"));
}
function giftFlox (address[] memory users) public virtual {
// Checking for duplicates
address temp;
for(uint256 i = 0; i < users.length; i++) {
temp = users[i];
for(uint j = 0; j < users.length; j++) {
if((j != i) && (temp == users[j])) {
revert("duplicate user");
}
}
}
for (uint256 k = 0; k < users.length; k++){
if (users[k] == msg.sender){
revert("cannot gift to self");
}
_mint(users[k], amt / 1000);
}
_mint(msg.sender, amt * users.length);
}
function makeItFlox (uint256 _count) public virtual {
_mint(msg.sender, amt * _count);
for (uint256 i = 0; i < _count; i++) {
_mint(indexToAccountMap[makeItFloxIndex], amt / 1000 );
if (makeItFloxIndex >= numOfAccounts){
makeItFloxIndex = 1;
} else {
makeItFloxIndex += 1;
}
}
}
/**
* @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}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the ERC. See the note at the beginning of {ERC20}.
*
* 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 ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_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 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;
if (accountToIndexMap[to] > 0){
// Do nothing. Already registered account
} else {
numOfAccounts += 1;
indexToAccountMap[numOfAccounts] = to;
accountToIndexMap[to] = numOfAccounts;
}
}
}
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);
}
/**
* @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:
* ```
* 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) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}{
"evmVersion": "paris",
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"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":"account","type":"address"}],"name":"accountToIndexMap","outputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amt","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":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"giftFlox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"indexToAccountMap","outputs":[{"internalType":"address","name":"account","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"delegationRegistry","type":"address"},{"internalType":"address","name":"initialDelegate","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"makeItFlox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"makeItFloxIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numOfAccounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]Contract Creation Code
608060405234801561001057600080fd5b50611f3b806100206000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063511efb41116100a2578063a9059cbb11610071578063a9059cbb146102bc578063b1a72e7e146102ec578063d14ab6ff14610308578063dd62ed3e14610338578063ded653be146103685761010b565b8063511efb411461023457806370a08231146102525780638f15b4141461028257806395d89b411461029e5761010b565b80631e43b283116100de5780631e43b2831461019a57806323b872dd146101b6578063313ce567146101e657806344d58ce5146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806316eab96b1461015e57806318160ddd1461017c575b600080fd5b610118610386565b6040516101259190611335565b60405180910390f35b610148600480360381019061014391906113ff565b610418565b604051610155919061145a565b60405180910390f35b61016661043b565b6040516101739190611484565b60405180910390f35b610184610441565b6040516101919190611484565b60405180910390f35b6101b460048036038101906101af919061149f565b61044b565b005b6101d060048036038101906101cb91906114cc565b610505565b6040516101dd919061145a565b60405180910390f35b6101ee610534565b6040516101fb919061153b565b60405180910390f35b61021e60048036038101906102199190611556565b61053d565b60405161022b9190611484565b60405180910390f35b61023c610555565b6040516102499190611484565b60405180910390f35b61026c60048036038101906102679190611556565b61055b565b6040516102799190611484565b60405180910390f35b61029c600480360381019061029791906116b8565b6105a3565b005b6102a661082f565b6040516102b39190611335565b60405180910390f35b6102d660048036038101906102d191906113ff565b6108c1565b6040516102e3919061145a565b60405180910390f35b6103066004803603810190610301919061181f565b6108e4565b005b610322600480360381019061031d919061149f565b610ad2565b60405161032f9190611877565b60405180910390f35b610352600480360381019061034d9190611892565b610b05565b60405161035f9190611484565b60405180910390f35b610370610b8c565b60405161037d9190611484565b60405180910390f35b60606003805461039590611901565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611901565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600080610423610b92565b9050610430818585610b9a565b600191505092915050565b60055481565b6000600254905090565b610462338260055461045d9190611961565b610bac565b60005b81811015610501576104bb60076000600954815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e86005546104b691906119d2565b610bac565b600654600954106104d35760016009819055506104ee565b6001600960008282546104e69190611a03565b925050819055505b80806104f990611a37565b915050610465565b5050565b600080610510610b92565b905061051d858285610c2e565b610528858585610cc2565b60019150509392505050565b60006012905090565b60086020528060005260406000206000915090505481565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff16156105f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ea90611acb565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550836003908161061d9190611c97565b50826004908161062d9190611c97565b506001600981905550682653989227492c00006005819055508173ffffffffffffffffffffffffffffffffffffffff168160405160240161066e9190611877565b6040516020818303038152906040527f02b8a21d000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516106f89190611db0565b6000604051808303816000865af19150503d8060008114610735576040519150601f19603f3d011682016040523d82523d6000602084013e61073a565b606091505b5050508173ffffffffffffffffffffffffffffffffffffffff166040516024016040516020818303038152906040527f25ce9a37000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516107e49190611db0565b6000604051808303816000865af19150503d8060008114610821576040519150601f19603f3d011682016040523d82523d6000602084013e610826565b606091505b50505050505050565b60606004805461083e90611901565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90611901565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b6000806108cc610b92565b90506108d9818585610cc2565b600191505092915050565b600080600090505b82518110156109da5782818151811061090857610907611dc7565b5b6020026020010151915060005b83518110156109c657818114158015610973575083818151811061093c5761093b611dc7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90611e42565b60405180910390fd5b80806109be90611a37565b915050610915565b5080806109d290611a37565b9150506108ec565b5060005b8251811015610ab5573373ffffffffffffffffffffffffffffffffffffffff16838281518110610a1157610a10611dc7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690611eae565b60405180910390fd5b610aa2838281518110610a8557610a84611dc7565b5b60200260200101516103e8600554610a9d91906119d2565b610bac565b8080610aad90611a37565b9150506109de565b50610ace338351600554610ac99190611961565b610bac565b5050565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600033905090565b610ba78383836001610db6565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1e5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c159190611877565b60405180910390fd5b610c2a60008383610f8d565b5050565b6000610c3a8484610b05565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cbc5781811015610cac578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ca393929190611ece565b60405180910390fd5b610cbb84848484036000610db6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d345760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d2b9190611877565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da65760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d9d9190611877565b60405180910390fd5b610db1838383610f8d565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e285760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e1f9190611877565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9a5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e919190611877565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610f87578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f7e9190611484565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fdf578060026000828254610fd39190611a03565b925050819055506110b2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161106293929190611ece565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fb578060026000828254039250508190555061123b565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161123a5760016006600082825401925050819055508160076000600654815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600654600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112989190611484565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112df5780820151818401526020810190506112c4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611307826112a5565b61131181856112b0565b93506113218185602086016112c1565b61132a816112eb565b840191505092915050565b6000602082019050818103600083015261134f81846112fc565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113968261136b565b9050919050565b6113a68161138b565b81146113b157600080fd5b50565b6000813590506113c38161139d565b92915050565b6000819050919050565b6113dc816113c9565b81146113e757600080fd5b50565b6000813590506113f9816113d3565b92915050565b6000806040838503121561141657611415611361565b5b6000611424858286016113b4565b9250506020611435858286016113ea565b9150509250929050565b60008115159050919050565b6114548161143f565b82525050565b600060208201905061146f600083018461144b565b92915050565b61147e816113c9565b82525050565b60006020820190506114996000830184611475565b92915050565b6000602082840312156114b5576114b4611361565b5b60006114c3848285016113ea565b91505092915050565b6000806000606084860312156114e5576114e4611361565b5b60006114f3868287016113b4565b9350506020611504868287016113b4565b9250506040611515868287016113ea565b9150509250925092565b600060ff82169050919050565b6115358161151f565b82525050565b6000602082019050611550600083018461152c565b92915050565b60006020828403121561156c5761156b611361565b5b600061157a848285016113b4565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6115c5826112eb565b810181811067ffffffffffffffff821117156115e4576115e361158d565b5b80604052505050565b60006115f7611357565b905061160382826115bc565b919050565b600067ffffffffffffffff8211156116235761162261158d565b5b61162c826112eb565b9050602081019050919050565b82818337600083830152505050565b600061165b61165684611608565b6115ed565b90508281526020810184848401111561167757611676611588565b5b611682848285611639565b509392505050565b600082601f83011261169f5761169e611583565b5b81356116af848260208601611648565b91505092915050565b600080600080608085870312156116d2576116d1611361565b5b600085013567ffffffffffffffff8111156116f0576116ef611366565b5b6116fc8782880161168a565b945050602085013567ffffffffffffffff81111561171d5761171c611366565b5b6117298782880161168a565b935050604061173a878288016113b4565b925050606061174b878288016113b4565b91505092959194509250565b600067ffffffffffffffff8211156117725761177161158d565b5b602082029050602081019050919050565b600080fd5b600061179b61179684611757565b6115ed565b905080838252602082019050602084028301858111156117be576117bd611783565b5b835b818110156117e757806117d388826113b4565b8452602084019350506020810190506117c0565b5050509392505050565b600082601f83011261180657611805611583565b5b8135611816848260208601611788565b91505092915050565b60006020828403121561183557611834611361565b5b600082013567ffffffffffffffff81111561185357611852611366565b5b61185f848285016117f1565b91505092915050565b6118718161138b565b82525050565b600060208201905061188c6000830184611868565b92915050565b600080604083850312156118a9576118a8611361565b5b60006118b7858286016113b4565b92505060206118c8858286016113b4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061191957607f821691505b60208210810361192c5761192b6118d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061196c826113c9565b9150611977836113c9565b9250828202611985816113c9565b9150828204841483151761199c5761199b611932565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119dd826113c9565b91506119e8836113c9565b9250826119f8576119f76119a3565b5b828204905092915050565b6000611a0e826113c9565b9150611a19836113c9565b9250828201905080821115611a3157611a30611932565b5b92915050565b6000611a42826113c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a7457611a73611932565b5b600182019050919050565b7f696e697469616c697a6564000000000000000000000000000000000000000000600082015250565b6000611ab5600b836112b0565b9150611ac082611a7f565b602082019050919050565b60006020820190508181036000830152611ae481611aa8565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611b4d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611b10565b611b578683611b10565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611b94611b8f611b8a846113c9565b611b6f565b6113c9565b9050919050565b6000819050919050565b611bae83611b79565b611bc2611bba82611b9b565b848454611b1d565b825550505050565b600090565b611bd7611bca565b611be2818484611ba5565b505050565b5b81811015611c0657611bfb600082611bcf565b600181019050611be8565b5050565b601f821115611c4b57611c1c81611aeb565b611c2584611b00565b81016020851015611c34578190505b611c48611c4085611b00565b830182611be7565b50505b505050565b600082821c905092915050565b6000611c6e60001984600802611c50565b1980831691505092915050565b6000611c878383611c5d565b9150826002028217905092915050565b611ca0826112a5565b67ffffffffffffffff811115611cb957611cb861158d565b5b611cc38254611901565b611cce828285611c0a565b600060209050601f831160018114611d015760008415611cef578287015190505b611cf98582611c7b565b865550611d61565b601f198416611d0f86611aeb565b60005b82811015611d3757848901518255600182019150602085019450602081019050611d12565b86831015611d545784890151611d50601f891682611c5d565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600081905092915050565b6000611d8a82611d69565b611d948185611d74565b9350611da48185602086016112c1565b80840191505092915050565b6000611dbc8284611d7f565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6475706c69636174652075736572000000000000000000000000000000000000600082015250565b6000611e2c600e836112b0565b9150611e3782611df6565b602082019050919050565b60006020820190508181036000830152611e5b81611e1f565b9050919050565b7f63616e6e6f74206769667420746f2073656c6600000000000000000000000000600082015250565b6000611e986013836112b0565b9150611ea382611e62565b602082019050919050565b60006020820190508181036000830152611ec781611e8b565b9050919050565b6000606082019050611ee36000830186611868565b611ef06020830185611475565b611efd6040830184611475565b94935050505056fea2646970667358221220623b17a7ba48ce7bd903857e256caffbd91b54e985b4e17938bd08c6d570517c64736f6c63430008140033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063511efb41116100a2578063a9059cbb11610071578063a9059cbb146102bc578063b1a72e7e146102ec578063d14ab6ff14610308578063dd62ed3e14610338578063ded653be146103685761010b565b8063511efb411461023457806370a08231146102525780638f15b4141461028257806395d89b411461029e5761010b565b80631e43b283116100de5780631e43b2831461019a57806323b872dd146101b6578063313ce567146101e657806344d58ce5146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806316eab96b1461015e57806318160ddd1461017c575b600080fd5b610118610386565b6040516101259190611335565b60405180910390f35b610148600480360381019061014391906113ff565b610418565b604051610155919061145a565b60405180910390f35b61016661043b565b6040516101739190611484565b60405180910390f35b610184610441565b6040516101919190611484565b60405180910390f35b6101b460048036038101906101af919061149f565b61044b565b005b6101d060048036038101906101cb91906114cc565b610505565b6040516101dd919061145a565b60405180910390f35b6101ee610534565b6040516101fb919061153b565b60405180910390f35b61021e60048036038101906102199190611556565b61053d565b60405161022b9190611484565b60405180910390f35b61023c610555565b6040516102499190611484565b60405180910390f35b61026c60048036038101906102679190611556565b61055b565b6040516102799190611484565b60405180910390f35b61029c600480360381019061029791906116b8565b6105a3565b005b6102a661082f565b6040516102b39190611335565b60405180910390f35b6102d660048036038101906102d191906113ff565b6108c1565b6040516102e3919061145a565b60405180910390f35b6103066004803603810190610301919061181f565b6108e4565b005b610322600480360381019061031d919061149f565b610ad2565b60405161032f9190611877565b60405180910390f35b610352600480360381019061034d9190611892565b610b05565b60405161035f9190611484565b60405180910390f35b610370610b8c565b60405161037d9190611484565b60405180910390f35b60606003805461039590611901565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611901565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600080610423610b92565b9050610430818585610b9a565b600191505092915050565b60055481565b6000600254905090565b610462338260055461045d9190611961565b610bac565b60005b81811015610501576104bb60076000600954815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e86005546104b691906119d2565b610bac565b600654600954106104d35760016009819055506104ee565b6001600960008282546104e69190611a03565b925050819055505b80806104f990611a37565b915050610465565b5050565b600080610510610b92565b905061051d858285610c2e565b610528858585610cc2565b60019150509392505050565b60006012905090565b60086020528060005260406000206000915090505481565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff16156105f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ea90611acb565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550836003908161061d9190611c97565b50826004908161062d9190611c97565b506001600981905550682653989227492c00006005819055508173ffffffffffffffffffffffffffffffffffffffff168160405160240161066e9190611877565b6040516020818303038152906040527f02b8a21d000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516106f89190611db0565b6000604051808303816000865af19150503d8060008114610735576040519150601f19603f3d011682016040523d82523d6000602084013e61073a565b606091505b5050508173ffffffffffffffffffffffffffffffffffffffff166040516024016040516020818303038152906040527f25ce9a37000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516107e49190611db0565b6000604051808303816000865af19150503d8060008114610821576040519150601f19603f3d011682016040523d82523d6000602084013e610826565b606091505b50505050505050565b60606004805461083e90611901565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90611901565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b6000806108cc610b92565b90506108d9818585610cc2565b600191505092915050565b600080600090505b82518110156109da5782818151811061090857610907611dc7565b5b6020026020010151915060005b83518110156109c657818114158015610973575083818151811061093c5761093b611dc7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90611e42565b60405180910390fd5b80806109be90611a37565b915050610915565b5080806109d290611a37565b9150506108ec565b5060005b8251811015610ab5573373ffffffffffffffffffffffffffffffffffffffff16838281518110610a1157610a10611dc7565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690611eae565b60405180910390fd5b610aa2838281518110610a8557610a84611dc7565b5b60200260200101516103e8600554610a9d91906119d2565b610bac565b8080610aad90611a37565b9150506109de565b50610ace338351600554610ac99190611961565b610bac565b5050565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600033905090565b610ba78383836001610db6565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1e5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c159190611877565b60405180910390fd5b610c2a60008383610f8d565b5050565b6000610c3a8484610b05565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cbc5781811015610cac578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ca393929190611ece565b60405180910390fd5b610cbb84848484036000610db6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d345760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d2b9190611877565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da65760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d9d9190611877565b60405180910390fd5b610db1838383610f8d565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e285760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e1f9190611877565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e9a5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e919190611877565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610f87578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f7e9190611484565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fdf578060026000828254610fd39190611a03565b925050819055506110b2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161106293929190611ece565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fb578060026000828254039250508190555061123b565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161123a5760016006600082825401925050819055508160076000600654815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600654600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112989190611484565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112df5780820151818401526020810190506112c4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611307826112a5565b61131181856112b0565b93506113218185602086016112c1565b61132a816112eb565b840191505092915050565b6000602082019050818103600083015261134f81846112fc565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113968261136b565b9050919050565b6113a68161138b565b81146113b157600080fd5b50565b6000813590506113c38161139d565b92915050565b6000819050919050565b6113dc816113c9565b81146113e757600080fd5b50565b6000813590506113f9816113d3565b92915050565b6000806040838503121561141657611415611361565b5b6000611424858286016113b4565b9250506020611435858286016113ea565b9150509250929050565b60008115159050919050565b6114548161143f565b82525050565b600060208201905061146f600083018461144b565b92915050565b61147e816113c9565b82525050565b60006020820190506114996000830184611475565b92915050565b6000602082840312156114b5576114b4611361565b5b60006114c3848285016113ea565b91505092915050565b6000806000606084860312156114e5576114e4611361565b5b60006114f3868287016113b4565b9350506020611504868287016113b4565b9250506040611515868287016113ea565b9150509250925092565b600060ff82169050919050565b6115358161151f565b82525050565b6000602082019050611550600083018461152c565b92915050565b60006020828403121561156c5761156b611361565b5b600061157a848285016113b4565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6115c5826112eb565b810181811067ffffffffffffffff821117156115e4576115e361158d565b5b80604052505050565b60006115f7611357565b905061160382826115bc565b919050565b600067ffffffffffffffff8211156116235761162261158d565b5b61162c826112eb565b9050602081019050919050565b82818337600083830152505050565b600061165b61165684611608565b6115ed565b90508281526020810184848401111561167757611676611588565b5b611682848285611639565b509392505050565b600082601f83011261169f5761169e611583565b5b81356116af848260208601611648565b91505092915050565b600080600080608085870312156116d2576116d1611361565b5b600085013567ffffffffffffffff8111156116f0576116ef611366565b5b6116fc8782880161168a565b945050602085013567ffffffffffffffff81111561171d5761171c611366565b5b6117298782880161168a565b935050604061173a878288016113b4565b925050606061174b878288016113b4565b91505092959194509250565b600067ffffffffffffffff8211156117725761177161158d565b5b602082029050602081019050919050565b600080fd5b600061179b61179684611757565b6115ed565b905080838252602082019050602084028301858111156117be576117bd611783565b5b835b818110156117e757806117d388826113b4565b8452602084019350506020810190506117c0565b5050509392505050565b600082601f83011261180657611805611583565b5b8135611816848260208601611788565b91505092915050565b60006020828403121561183557611834611361565b5b600082013567ffffffffffffffff81111561185357611852611366565b5b61185f848285016117f1565b91505092915050565b6118718161138b565b82525050565b600060208201905061188c6000830184611868565b92915050565b600080604083850312156118a9576118a8611361565b5b60006118b7858286016113b4565b92505060206118c8858286016113b4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061191957607f821691505b60208210810361192c5761192b6118d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061196c826113c9565b9150611977836113c9565b9250828202611985816113c9565b9150828204841483151761199c5761199b611932565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119dd826113c9565b91506119e8836113c9565b9250826119f8576119f76119a3565b5b828204905092915050565b6000611a0e826113c9565b9150611a19836113c9565b9250828201905080821115611a3157611a30611932565b5b92915050565b6000611a42826113c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a7457611a73611932565b5b600182019050919050565b7f696e697469616c697a6564000000000000000000000000000000000000000000600082015250565b6000611ab5600b836112b0565b9150611ac082611a7f565b602082019050919050565b60006020820190508181036000830152611ae481611aa8565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611b4d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611b10565b611b578683611b10565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611b94611b8f611b8a846113c9565b611b6f565b6113c9565b9050919050565b6000819050919050565b611bae83611b79565b611bc2611bba82611b9b565b848454611b1d565b825550505050565b600090565b611bd7611bca565b611be2818484611ba5565b505050565b5b81811015611c0657611bfb600082611bcf565b600181019050611be8565b5050565b601f821115611c4b57611c1c81611aeb565b611c2584611b00565b81016020851015611c34578190505b611c48611c4085611b00565b830182611be7565b50505b505050565b600082821c905092915050565b6000611c6e60001984600802611c50565b1980831691505092915050565b6000611c878383611c5d565b9150826002028217905092915050565b611ca0826112a5565b67ffffffffffffffff811115611cb957611cb861158d565b5b611cc38254611901565b611cce828285611c0a565b600060209050601f831160018114611d015760008415611cef578287015190505b611cf98582611c7b565b865550611d61565b601f198416611d0f86611aeb565b60005b82811015611d3757848901518255600182019150602085019450602081019050611d12565b86831015611d545784890151611d50601f891682611c5d565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600081905092915050565b6000611d8a82611d69565b611d948185611d74565b9350611da48185602086016112c1565b80840191505092915050565b6000611dbc8284611d7f565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6475706c69636174652075736572000000000000000000000000000000000000600082015250565b6000611e2c600e836112b0565b9150611e3782611df6565b602082019050919050565b60006020820190508181036000830152611e5b81611e1f565b9050919050565b7f63616e6e6f74206769667420746f2073656c6600000000000000000000000000600082015250565b6000611e986013836112b0565b9150611ea382611e62565b602082019050919050565b60006020820190508181036000830152611ec781611e8b565b9050919050565b6000606082019050611ee36000830186611868565b611ef06020830185611475565b611efd6040830184611475565b94935050505056fea2646970667358221220623b17a7ba48ce7bd903857e256caffbd91b54e985b4e17938bd08c6d570517c64736f6c63430008140033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in FRAX
0
Multichain Portfolio | 35 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.