Source Code
Overview
FRAX Balance | FXTL Balance
0 FRAX | 0 FXTL
FRAX Value
$0.00View 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);
}
_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);
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
608060405234801561001057600080fd5b50611ec1806100206000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063511efb41116100a2578063a9059cbb11610071578063a9059cbb146102bc578063b1a72e7e146102ec578063d14ab6ff14610308578063dd62ed3e14610338578063ded653be146103685761010b565b8063511efb411461023457806370a08231146102525780638f15b4141461028257806395d89b411461029e5761010b565b80631e43b283116100de5780631e43b2831461019a57806323b872dd146101b6578063313ce567146101e657806344d58ce5146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806316eab96b1461015e57806318160ddd1461017c575b600080fd5b610118610386565b604051610125919061131b565b60405180910390f35b610148600480360381019061014391906113e5565b610418565b6040516101559190611440565b60405180910390f35b61016661043b565b604051610173919061146a565b60405180910390f35b610184610441565b604051610191919061146a565b60405180910390f35b6101b460048036038101906101af9190611485565b61044b565b005b6101d060048036038101906101cb91906114b2565b6104f8565b6040516101dd9190611440565b60405180910390f35b6101ee610527565b6040516101fb9190611521565b60405180910390f35b61021e6004803603810190610219919061153c565b610530565b60405161022b919061146a565b60405180910390f35b61023c610548565b604051610249919061146a565b60405180910390f35b61026c6004803603810190610267919061153c565b61054e565b604051610279919061146a565b60405180910390f35b61029c6004803603810190610297919061169e565b610596565b005b6102a6610822565b6040516102b3919061131b565b60405180910390f35b6102d660048036038101906102d191906113e5565b6108b4565b6040516102e39190611440565b60405180910390f35b61030660048036038101906103019190611805565b6108d7565b005b610322600480360381019061031d9190611485565b610ab8565b60405161032f919061185d565b60405180910390f35b610352600480360381019061034d9190611878565b610aeb565b60405161035f919061146a565b60405180910390f35b610370610b72565b60405161037d919061146a565b60405180910390f35b606060038054610395906118e7565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906118e7565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600080610423610b78565b9050610430818585610b80565b600191505092915050565b60055481565b6000600254905090565b610462338260055461045d9190611947565b610b92565b60005b818110156104f4576104ae60076000600954815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600554610b92565b600654600954106104c65760016009819055506104e1565b6001600960008282546104d99190611989565b925050819055505b80806104ec906119bd565b915050610465565b5050565b600080610503610b78565b9050610510858285610c14565b61051b858585610ca8565b60019150509392505050565b60006012905090565b60086020528060005260406000206000915090505481565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff16156105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd90611a51565b60405180910390fd5b6001600a60006101000a81548160ff02191690831515021790555083600390816106109190611c1d565b5082600490816106209190611c1d565b506001600981905550682653989227492c00006005819055508173ffffffffffffffffffffffffffffffffffffffff1681604051602401610661919061185d565b6040516020818303038152906040527f02b8a21d000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516106eb9190611d36565b6000604051808303816000865af19150503d8060008114610728576040519150601f19603f3d011682016040523d82523d6000602084013e61072d565b606091505b5050508173ffffffffffffffffffffffffffffffffffffffff166040516024016040516020818303038152906040527f25ce9a37000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516107d79190611d36565b6000604051808303816000865af19150503d8060008114610814576040519150601f19603f3d011682016040523d82523d6000602084013e610819565b606091505b50505050505050565b606060048054610831906118e7565b80601f016020809104026020016040519081016040528092919081815260200182805461085d906118e7565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b6000806108bf610b78565b90506108cc818585610ca8565b600191505092915050565b600080600090505b82518110156109cd578281815181106108fb576108fa611d4d565b5b6020026020010151915060005b83518110156109b957818114158015610966575083818151811061092f5761092e611d4d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d90611dc8565b60405180910390fd5b80806109b1906119bd565b915050610908565b5080806109c5906119bd565b9150506108df565b5060005b8251811015610a9b573373ffffffffffffffffffffffffffffffffffffffff16838281518110610a0457610a03611d4d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990611e34565b60405180910390fd5b610a88838281518110610a7857610a77611d4d565b5b6020026020010151600554610b92565b8080610a93906119bd565b9150506109d1565b50610ab4338351600554610aaf9190611947565b610b92565b5050565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600033905090565b610b8d8383836001610d9c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c045760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bfb919061185d565b60405180910390fd5b610c1060008383610f73565b5050565b6000610c208484610aeb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ca25781811015610c92578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c8993929190611e54565b60405180910390fd5b610ca184848484036000610d9c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1a5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d11919061185d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d8c5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d83919061185d565b60405180910390fd5b610d97838383610f73565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e0e5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e05919061185d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e805760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e77919061185d565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610f6d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f64919061146a565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc5578060026000828254610fb99190611989565b92505081905550611098565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611051578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161104893929190611e54565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e15780600260008282540392505081905550611221565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116112205760016006600082825401925050819055508160076000600654815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600654600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127e919061146a565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c55780820151818401526020810190506112aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ed8261128b565b6112f78185611296565b93506113078185602086016112a7565b611310816112d1565b840191505092915050565b6000602082019050818103600083015261133581846112e2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061137c82611351565b9050919050565b61138c81611371565b811461139757600080fd5b50565b6000813590506113a981611383565b92915050565b6000819050919050565b6113c2816113af565b81146113cd57600080fd5b50565b6000813590506113df816113b9565b92915050565b600080604083850312156113fc576113fb611347565b5b600061140a8582860161139a565b925050602061141b858286016113d0565b9150509250929050565b60008115159050919050565b61143a81611425565b82525050565b60006020820190506114556000830184611431565b92915050565b611464816113af565b82525050565b600060208201905061147f600083018461145b565b92915050565b60006020828403121561149b5761149a611347565b5b60006114a9848285016113d0565b91505092915050565b6000806000606084860312156114cb576114ca611347565b5b60006114d98682870161139a565b93505060206114ea8682870161139a565b92505060406114fb868287016113d0565b9150509250925092565b600060ff82169050919050565b61151b81611505565b82525050565b60006020820190506115366000830184611512565b92915050565b60006020828403121561155257611551611347565b5b60006115608482850161139a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6115ab826112d1565b810181811067ffffffffffffffff821117156115ca576115c9611573565b5b80604052505050565b60006115dd61133d565b90506115e982826115a2565b919050565b600067ffffffffffffffff82111561160957611608611573565b5b611612826112d1565b9050602081019050919050565b82818337600083830152505050565b600061164161163c846115ee565b6115d3565b90508281526020810184848401111561165d5761165c61156e565b5b61166884828561161f565b509392505050565b600082601f83011261168557611684611569565b5b813561169584826020860161162e565b91505092915050565b600080600080608085870312156116b8576116b7611347565b5b600085013567ffffffffffffffff8111156116d6576116d561134c565b5b6116e287828801611670565b945050602085013567ffffffffffffffff8111156117035761170261134c565b5b61170f87828801611670565b93505060406117208782880161139a565b92505060606117318782880161139a565b91505092959194509250565b600067ffffffffffffffff82111561175857611757611573565b5b602082029050602081019050919050565b600080fd5b600061178161177c8461173d565b6115d3565b905080838252602082019050602084028301858111156117a4576117a3611769565b5b835b818110156117cd57806117b9888261139a565b8452602084019350506020810190506117a6565b5050509392505050565b600082601f8301126117ec576117eb611569565b5b81356117fc84826020860161176e565b91505092915050565b60006020828403121561181b5761181a611347565b5b600082013567ffffffffffffffff8111156118395761183861134c565b5b611845848285016117d7565b91505092915050565b61185781611371565b82525050565b6000602082019050611872600083018461184e565b92915050565b6000806040838503121561188f5761188e611347565b5b600061189d8582860161139a565b92505060206118ae8582860161139a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118ff57607f821691505b602082108103611912576119116118b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611952826113af565b915061195d836113af565b925082820261196b816113af565b9150828204841483151761198257611981611918565b5b5092915050565b6000611994826113af565b915061199f836113af565b92508282019050808211156119b7576119b6611918565b5b92915050565b60006119c8826113af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036119fa576119f9611918565b5b600182019050919050565b7f696e697469616c697a6564000000000000000000000000000000000000000000600082015250565b6000611a3b600b83611296565b9150611a4682611a05565b602082019050919050565b60006020820190508181036000830152611a6a81611a2e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611ad37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611a96565b611add8683611a96565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611b1a611b15611b10846113af565b611af5565b6113af565b9050919050565b6000819050919050565b611b3483611aff565b611b48611b4082611b21565b848454611aa3565b825550505050565b600090565b611b5d611b50565b611b68818484611b2b565b505050565b5b81811015611b8c57611b81600082611b55565b600181019050611b6e565b5050565b601f821115611bd157611ba281611a71565b611bab84611a86565b81016020851015611bba578190505b611bce611bc685611a86565b830182611b6d565b50505b505050565b600082821c905092915050565b6000611bf460001984600802611bd6565b1980831691505092915050565b6000611c0d8383611be3565b9150826002028217905092915050565b611c268261128b565b67ffffffffffffffff811115611c3f57611c3e611573565b5b611c4982546118e7565b611c54828285611b90565b600060209050601f831160018114611c875760008415611c75578287015190505b611c7f8582611c01565b865550611ce7565b601f198416611c9586611a71565b60005b82811015611cbd57848901518255600182019150602085019450602081019050611c98565b86831015611cda5784890151611cd6601f891682611be3565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600081905092915050565b6000611d1082611cef565b611d1a8185611cfa565b9350611d2a8185602086016112a7565b80840191505092915050565b6000611d428284611d05565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6475706c69636174652075736572000000000000000000000000000000000000600082015250565b6000611db2600e83611296565b9150611dbd82611d7c565b602082019050919050565b60006020820190508181036000830152611de181611da5565b9050919050565b7f63616e6e6f74206769667420746f2073656c6600000000000000000000000000600082015250565b6000611e1e601383611296565b9150611e2982611de8565b602082019050919050565b60006020820190508181036000830152611e4d81611e11565b9050919050565b6000606082019050611e69600083018661184e565b611e76602083018561145b565b611e83604083018461145b565b94935050505056fea26469706673582212209f1893e6d73586a9914f1024cb024dc25b85f0e43476f35002552c5ba469bb7a64736f6c63430008140033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063511efb41116100a2578063a9059cbb11610071578063a9059cbb146102bc578063b1a72e7e146102ec578063d14ab6ff14610308578063dd62ed3e14610338578063ded653be146103685761010b565b8063511efb411461023457806370a08231146102525780638f15b4141461028257806395d89b411461029e5761010b565b80631e43b283116100de5780631e43b2831461019a57806323b872dd146101b6578063313ce567146101e657806344d58ce5146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806316eab96b1461015e57806318160ddd1461017c575b600080fd5b610118610386565b604051610125919061131b565b60405180910390f35b610148600480360381019061014391906113e5565b610418565b6040516101559190611440565b60405180910390f35b61016661043b565b604051610173919061146a565b60405180910390f35b610184610441565b604051610191919061146a565b60405180910390f35b6101b460048036038101906101af9190611485565b61044b565b005b6101d060048036038101906101cb91906114b2565b6104f8565b6040516101dd9190611440565b60405180910390f35b6101ee610527565b6040516101fb9190611521565b60405180910390f35b61021e6004803603810190610219919061153c565b610530565b60405161022b919061146a565b60405180910390f35b61023c610548565b604051610249919061146a565b60405180910390f35b61026c6004803603810190610267919061153c565b61054e565b604051610279919061146a565b60405180910390f35b61029c6004803603810190610297919061169e565b610596565b005b6102a6610822565b6040516102b3919061131b565b60405180910390f35b6102d660048036038101906102d191906113e5565b6108b4565b6040516102e39190611440565b60405180910390f35b61030660048036038101906103019190611805565b6108d7565b005b610322600480360381019061031d9190611485565b610ab8565b60405161032f919061185d565b60405180910390f35b610352600480360381019061034d9190611878565b610aeb565b60405161035f919061146a565b60405180910390f35b610370610b72565b60405161037d919061146a565b60405180910390f35b606060038054610395906118e7565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906118e7565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600080610423610b78565b9050610430818585610b80565b600191505092915050565b60055481565b6000600254905090565b610462338260055461045d9190611947565b610b92565b60005b818110156104f4576104ae60076000600954815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600554610b92565b600654600954106104c65760016009819055506104e1565b6001600960008282546104d99190611989565b925050819055505b80806104ec906119bd565b915050610465565b5050565b600080610503610b78565b9050610510858285610c14565b61051b858585610ca8565b60019150509392505050565b60006012905090565b60086020528060005260406000206000915090505481565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff16156105e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105dd90611a51565b60405180910390fd5b6001600a60006101000a81548160ff02191690831515021790555083600390816106109190611c1d565b5082600490816106209190611c1d565b506001600981905550682653989227492c00006005819055508173ffffffffffffffffffffffffffffffffffffffff1681604051602401610661919061185d565b6040516020818303038152906040527f02b8a21d000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516106eb9190611d36565b6000604051808303816000865af19150503d8060008114610728576040519150601f19603f3d011682016040523d82523d6000602084013e61072d565b606091505b5050508173ffffffffffffffffffffffffffffffffffffffff166040516024016040516020818303038152906040527f25ce9a37000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516107d79190611d36565b6000604051808303816000865af19150503d8060008114610814576040519150601f19603f3d011682016040523d82523d6000602084013e610819565b606091505b50505050505050565b606060048054610831906118e7565b80601f016020809104026020016040519081016040528092919081815260200182805461085d906118e7565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b6000806108bf610b78565b90506108cc818585610ca8565b600191505092915050565b600080600090505b82518110156109cd578281815181106108fb576108fa611d4d565b5b6020026020010151915060005b83518110156109b957818114158015610966575083818151811061092f5761092e611d4d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156109a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099d90611dc8565b60405180910390fd5b80806109b1906119bd565b915050610908565b5080806109c5906119bd565b9150506108df565b5060005b8251811015610a9b573373ffffffffffffffffffffffffffffffffffffffff16838281518110610a0457610a03611d4d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990611e34565b60405180910390fd5b610a88838281518110610a7857610a77611d4d565b5b6020026020010151600554610b92565b8080610a93906119bd565b9150506109d1565b50610ab4338351600554610aaf9190611947565b610b92565b5050565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600033905090565b610b8d8383836001610d9c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c045760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bfb919061185d565b60405180910390fd5b610c1060008383610f73565b5050565b6000610c208484610aeb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ca25781811015610c92578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c8993929190611e54565b60405180910390fd5b610ca184848484036000610d9c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1a5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d11919061185d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d8c5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d83919061185d565b60405180910390fd5b610d97838383610f73565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e0e5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e05919061185d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e805760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e77919061185d565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610f6d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f64919061146a565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc5578060026000828254610fb99190611989565b92505081905550611098565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611051578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161104893929190611e54565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e15780600260008282540392505081905550611221565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116112205760016006600082825401925050819055508160076000600654815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600654600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161127e919061146a565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c55780820151818401526020810190506112aa565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ed8261128b565b6112f78185611296565b93506113078185602086016112a7565b611310816112d1565b840191505092915050565b6000602082019050818103600083015261133581846112e2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061137c82611351565b9050919050565b61138c81611371565b811461139757600080fd5b50565b6000813590506113a981611383565b92915050565b6000819050919050565b6113c2816113af565b81146113cd57600080fd5b50565b6000813590506113df816113b9565b92915050565b600080604083850312156113fc576113fb611347565b5b600061140a8582860161139a565b925050602061141b858286016113d0565b9150509250929050565b60008115159050919050565b61143a81611425565b82525050565b60006020820190506114556000830184611431565b92915050565b611464816113af565b82525050565b600060208201905061147f600083018461145b565b92915050565b60006020828403121561149b5761149a611347565b5b60006114a9848285016113d0565b91505092915050565b6000806000606084860312156114cb576114ca611347565b5b60006114d98682870161139a565b93505060206114ea8682870161139a565b92505060406114fb868287016113d0565b9150509250925092565b600060ff82169050919050565b61151b81611505565b82525050565b60006020820190506115366000830184611512565b92915050565b60006020828403121561155257611551611347565b5b60006115608482850161139a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6115ab826112d1565b810181811067ffffffffffffffff821117156115ca576115c9611573565b5b80604052505050565b60006115dd61133d565b90506115e982826115a2565b919050565b600067ffffffffffffffff82111561160957611608611573565b5b611612826112d1565b9050602081019050919050565b82818337600083830152505050565b600061164161163c846115ee565b6115d3565b90508281526020810184848401111561165d5761165c61156e565b5b61166884828561161f565b509392505050565b600082601f83011261168557611684611569565b5b813561169584826020860161162e565b91505092915050565b600080600080608085870312156116b8576116b7611347565b5b600085013567ffffffffffffffff8111156116d6576116d561134c565b5b6116e287828801611670565b945050602085013567ffffffffffffffff8111156117035761170261134c565b5b61170f87828801611670565b93505060406117208782880161139a565b92505060606117318782880161139a565b91505092959194509250565b600067ffffffffffffffff82111561175857611757611573565b5b602082029050602081019050919050565b600080fd5b600061178161177c8461173d565b6115d3565b905080838252602082019050602084028301858111156117a4576117a3611769565b5b835b818110156117cd57806117b9888261139a565b8452602084019350506020810190506117a6565b5050509392505050565b600082601f8301126117ec576117eb611569565b5b81356117fc84826020860161176e565b91505092915050565b60006020828403121561181b5761181a611347565b5b600082013567ffffffffffffffff8111156118395761183861134c565b5b611845848285016117d7565b91505092915050565b61185781611371565b82525050565b6000602082019050611872600083018461184e565b92915050565b6000806040838503121561188f5761188e611347565b5b600061189d8582860161139a565b92505060206118ae8582860161139a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118ff57607f821691505b602082108103611912576119116118b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611952826113af565b915061195d836113af565b925082820261196b816113af565b9150828204841483151761198257611981611918565b5b5092915050565b6000611994826113af565b915061199f836113af565b92508282019050808211156119b7576119b6611918565b5b92915050565b60006119c8826113af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036119fa576119f9611918565b5b600182019050919050565b7f696e697469616c697a6564000000000000000000000000000000000000000000600082015250565b6000611a3b600b83611296565b9150611a4682611a05565b602082019050919050565b60006020820190508181036000830152611a6a81611a2e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611ad37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611a96565b611add8683611a96565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611b1a611b15611b10846113af565b611af5565b6113af565b9050919050565b6000819050919050565b611b3483611aff565b611b48611b4082611b21565b848454611aa3565b825550505050565b600090565b611b5d611b50565b611b68818484611b2b565b505050565b5b81811015611b8c57611b81600082611b55565b600181019050611b6e565b5050565b601f821115611bd157611ba281611a71565b611bab84611a86565b81016020851015611bba578190505b611bce611bc685611a86565b830182611b6d565b50505b505050565b600082821c905092915050565b6000611bf460001984600802611bd6565b1980831691505092915050565b6000611c0d8383611be3565b9150826002028217905092915050565b611c268261128b565b67ffffffffffffffff811115611c3f57611c3e611573565b5b611c4982546118e7565b611c54828285611b90565b600060209050601f831160018114611c875760008415611c75578287015190505b611c7f8582611c01565b865550611ce7565b601f198416611c9586611a71565b60005b82811015611cbd57848901518255600182019150602085019450602081019050611c98565b86831015611cda5784890151611cd6601f891682611be3565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600081905092915050565b6000611d1082611cef565b611d1a8185611cfa565b9350611d2a8185602086016112a7565b80840191505092915050565b6000611d428284611d05565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6475706c69636174652075736572000000000000000000000000000000000000600082015250565b6000611db2600e83611296565b9150611dbd82611d7c565b602082019050919050565b60006020820190508181036000830152611de181611da5565b9050919050565b7f63616e6e6f74206769667420746f2073656c6600000000000000000000000000600082015250565b6000611e1e601383611296565b9150611e2982611de8565b602082019050919050565b60006020820190508181036000830152611e4d81611e11565b9050919050565b6000606082019050611e69600083018661184e565b611e76602083018561145b565b611e83604083018461145b565b94935050505056fea26469706673582212209f1893e6d73586a9914f1024cb024dc25b85f0e43476f35002552c5ba469bb7a64736f6c63430008140033
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
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.