Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 89 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17548627 | 612 days ago | IN | 0 ETH | 0.00066112 | ||||
Approve | 17304746 | 646 days ago | IN | 0 ETH | 0.00075475 | ||||
Approve | 17254718 | 653 days ago | IN | 0 ETH | 0.00160497 | ||||
Approve | 17254664 | 653 days ago | IN | 0 ETH | 0.00212791 | ||||
Approve | 17254658 | 653 days ago | IN | 0 ETH | 0.00092587 | ||||
Approve | 17254656 | 653 days ago | IN | 0 ETH | 0.00150719 | ||||
Approve | 17254652 | 653 days ago | IN | 0 ETH | 0.00154844 | ||||
Approve | 17254649 | 653 days ago | IN | 0 ETH | 0.00211099 | ||||
Transfer | 17254647 | 653 days ago | IN | 0 ETH | 0.00162907 | ||||
Burn | 17254646 | 653 days ago | IN | 0 ETH | 0.00122868 | ||||
Approve | 17254643 | 653 days ago | IN | 0 ETH | 0.00160521 | ||||
Approve | 17254642 | 653 days ago | IN | 0 ETH | 0.00143894 | ||||
Approve | 17254640 | 653 days ago | IN | 0 ETH | 0.00168412 | ||||
Approve | 17254596 | 653 days ago | IN | 0 ETH | 0.00168339 | ||||
Approve | 17254594 | 653 days ago | IN | 0 ETH | 0.00158101 | ||||
Approve | 17254592 | 653 days ago | IN | 0 ETH | 0.00164048 | ||||
Approve | 17254588 | 653 days ago | IN | 0 ETH | 0.0016149 | ||||
Approve | 17254575 | 653 days ago | IN | 0 ETH | 0.00212894 | ||||
Burn | 17254571 | 653 days ago | IN | 0 ETH | 0.00145814 | ||||
Approve | 17254570 | 653 days ago | IN | 0 ETH | 0.00117586 | ||||
Approve | 17254569 | 653 days ago | IN | 0 ETH | 0.00209191 | ||||
Approve | 17254567 | 653 days ago | IN | 0 ETH | 0.00211976 | ||||
Approve | 17254563 | 653 days ago | IN | 0 ETH | 0.00171437 | ||||
Approve | 17254546 | 653 days ago | IN | 0 ETH | 0.00162811 | ||||
Approve | 17254546 | 653 days ago | IN | 0 ETH | 0.00162811 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Oil
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* We are cooking the $SAUCE https://t.me/araboileth https://twitter.com/araboilcoin */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); } contract Oil is ERC20, Ownable { address public uniswapV2Pair; constructor() ERC20("Arab Oil", "OIL") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _mint(_msgSender(), 1000000000 * 10**18); } /// BURN THE OIL function burn(uint256 amount) public virtual { require( balanceOf(_msgSender()) >= amount, "ERC20: burn amount exceeds oil balance" ); _burn(_msgSender(), amount); } function withdraw() public onlyOwner { uint256 contractBalance = address(this).balance; bool success = true; (success, ) = payable(owner()).call{value: contractBalance}(""); require(success, "Transfer failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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]. * * 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 ERC20 * 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 EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 value {ERC20} uses, unless this function is * 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600881526020017f41726162204f696c0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4f494c000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000775565b508060049081620000a1919062000775565b505050620000c4620000b8620002b660201b60201c565b620002be60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000129573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014f9190620008c6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dd9190620008c6565b6040518363ffffffff1660e01b8152600401620001fc92919062000909565b6020604051808303816000875af11580156200021c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002429190620008c6565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002af62000296620002b660201b60201c565b6b033b2e3c9fd0803ce80000006200038460201b60201c565b5062000a51565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ed9062000997565b60405180910390fd5b6200040a60008383620004f160201b60201c565b80600260008282546200041e9190620009e8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004d1919062000a34565b60405180910390a3620004ed60008383620004f660201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057d57607f821691505b60208210810362000593576200059262000535565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005be565b620006098683620005be565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000656620006506200064a8462000621565b6200062b565b62000621565b9050919050565b6000819050919050565b620006728362000635565b6200068a62000681826200065d565b848454620005cb565b825550505050565b600090565b620006a162000692565b620006ae81848462000667565b505050565b5b81811015620006d657620006ca60008262000697565b600181019050620006b4565b5050565b601f8211156200072557620006ef8162000599565b620006fa84620005ae565b810160208510156200070a578190505b620007226200071985620005ae565b830182620006b3565b50505b505050565b600082821c905092915050565b60006200074a600019846008026200072a565b1980831691505092915050565b600062000765838362000737565b9150826002028217905092915050565b6200078082620004fb565b67ffffffffffffffff8111156200079c576200079b62000506565b5b620007a8825462000564565b620007b5828285620006da565b600060209050601f831160018114620007ed5760008415620007d8578287015190505b620007e4858262000757565b86555062000854565b601f198416620007fd8662000599565b60005b82811015620008275784890151825560018201915060208501945060208101905062000800565b8683101562000847578489015162000843601f89168262000737565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200088e8262000861565b9050919050565b620008a08162000881565b8114620008ac57600080fd5b50565b600081519050620008c08162000895565b92915050565b600060208284031215620008df57620008de6200085c565b5b6000620008ef84828501620008af565b91505092915050565b620009038162000881565b82525050565b6000604082019050620009206000830185620008f8565b6200092f6020830184620008f8565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200097f601f8362000936565b91506200098c8262000947565b602082019050919050565b60006020820190508181036000830152620009b28162000970565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009f58262000621565b915062000a028362000621565b925082820190508082111562000a1d5762000a1c620009b9565b5b92915050565b62000a2e8162000621565b82525050565b600060208201905062000a4b600083018462000a23565b92915050565b611bfe8062000a616000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806349bd5a5e116100a257806395d89b411161007157806395d89b4114610296578063a457c2d7146102b4578063a9059cbb146102e4578063dd62ed3e14610314578063f2fde38b146103445761010b565b806349bd5a5e1461022057806370a082311461023e578063715018a61461026e5780638da5cb5b146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633ccfd60b146101fa57806342966c68146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610360565b604051610125919061111e565b60405180910390f35b610148600480360381019061014391906111d9565b6103f2565b6040516101559190611234565b60405180910390f35b610166610415565b604051610173919061125e565b60405180910390f35b61019660048036038101906101919190611279565b61041f565b6040516101a39190611234565b60405180910390f35b6101b461044e565b6040516101c191906112e8565b60405180910390f35b6101e460048036038101906101df91906111d9565b610457565b6040516101f19190611234565b60405180910390f35b61020261048e565b005b61021e60048036038101906102199190611303565b610558565b005b6102286105be565b604051610235919061133f565b60405180910390f35b6102586004803603810190610253919061135a565b6105e4565b604051610265919061125e565b60405180910390f35b61027661062c565b005b610280610640565b60405161028d919061133f565b60405180910390f35b61029e61066a565b6040516102ab919061111e565b60405180910390f35b6102ce60048036038101906102c991906111d9565b6106fc565b6040516102db9190611234565b60405180910390f35b6102fe60048036038101906102f991906111d9565b610773565b60405161030b9190611234565b60405180910390f35b61032e60048036038101906103299190611387565b610796565b60405161033b919061125e565b60405180910390f35b61035e6004803603810190610359919061135a565b61081d565b005b60606003805461036f906113f6565b80601f016020809104026020016040519081016040528092919081815260200182805461039b906113f6565b80156103e85780601f106103bd576101008083540402835291602001916103e8565b820191906000526020600020905b8154815290600101906020018083116103cb57829003601f168201915b5050505050905090565b6000806103fd6108a0565b905061040a8185856108a8565b600191505092915050565b6000600254905090565b60008061042a6108a0565b9050610437858285610a71565b610442858585610afd565b60019150509392505050565b60006012905090565b6000806104626108a0565b90506104838185856104748589610796565b61047e9190611456565b6108a8565b600191505092915050565b610496610d73565b60004790506000600190506104a9610640565b73ffffffffffffffffffffffffffffffffffffffff16826040516104cc906114bb565b60006040518083038185875af1925050503d8060008114610509576040519150601f19603f3d011682016040523d82523d6000602084013e61050e565b606091505b50508091505080610554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054b9061151c565b60405180910390fd5b5050565b806105696105646108a0565b6105e4565b10156105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a1906115ae565b60405180910390fd5b6105bb6105b56108a0565b82610df1565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610634610d73565b61063e6000610fbe565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610679906113f6565b80601f01602080910402602001604051908101604052809291908181526020018280546106a5906113f6565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b6000806107076108a0565b905060006107158286610796565b90508381101561075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190611640565b60405180910390fd5b61076782868684036108a8565b60019250505092915050565b60008061077e6108a0565b905061078b818585610afd565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610825610d73565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b906116d2565b60405180910390fd5b61089d81610fbe565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90611764565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d906117f6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a64919061125e565b60405180910390a3505050565b6000610a7d8484610796565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610af75781811015610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090611862565b60405180910390fd5b610af684848484036108a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b63906118f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290611986565b60405180910390fd5b610be6838383611084565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390611a18565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5a919061125e565b60405180910390a3610d6d848484611089565b50505050565b610d7b6108a0565b73ffffffffffffffffffffffffffffffffffffffff16610d99610640565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690611a84565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611b16565b60405180910390fd5b610e6c82600083611084565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990611ba8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa5919061125e565b60405180910390a3610fb983600084611089565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110c85780820151818401526020810190506110ad565b60008484015250505050565b6000601f19601f8301169050919050565b60006110f08261108e565b6110fa8185611099565b935061110a8185602086016110aa565b611113816110d4565b840191505092915050565b6000602082019050818103600083015261113881846110e5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061117082611145565b9050919050565b61118081611165565b811461118b57600080fd5b50565b60008135905061119d81611177565b92915050565b6000819050919050565b6111b6816111a3565b81146111c157600080fd5b50565b6000813590506111d3816111ad565b92915050565b600080604083850312156111f0576111ef611140565b5b60006111fe8582860161118e565b925050602061120f858286016111c4565b9150509250929050565b60008115159050919050565b61122e81611219565b82525050565b60006020820190506112496000830184611225565b92915050565b611258816111a3565b82525050565b6000602082019050611273600083018461124f565b92915050565b60008060006060848603121561129257611291611140565b5b60006112a08682870161118e565b93505060206112b18682870161118e565b92505060406112c2868287016111c4565b9150509250925092565b600060ff82169050919050565b6112e2816112cc565b82525050565b60006020820190506112fd60008301846112d9565b92915050565b60006020828403121561131957611318611140565b5b6000611327848285016111c4565b91505092915050565b61133981611165565b82525050565b60006020820190506113546000830184611330565b92915050565b6000602082840312156113705761136f611140565b5b600061137e8482850161118e565b91505092915050565b6000806040838503121561139e5761139d611140565b5b60006113ac8582860161118e565b92505060206113bd8582860161118e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140e57607f821691505b602082108103611421576114206113c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611461826111a3565b915061146c836111a3565b925082820190508082111561148457611483611427565b5b92915050565b600081905092915050565b50565b60006114a560008361148a565b91506114b082611495565b600082019050919050565b60006114c682611498565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000611506600f83611099565b9150611511826114d0565b602082019050919050565b60006020820190508181036000830152611535816114f9565b9050919050565b7f45524332303a206275726e20616d6f756e742065786365656473206f696c206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611598602683611099565b91506115a38261153c565b604082019050919050565b600060208201905081810360008301526115c78161158b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061162a602583611099565b9150611635826115ce565b604082019050919050565b600060208201905081810360008301526116598161161d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116bc602683611099565b91506116c782611660565b604082019050919050565b600060208201905081810360008301526116eb816116af565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061174e602483611099565b9150611759826116f2565b604082019050919050565b6000602082019050818103600083015261177d81611741565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117e0602283611099565b91506117eb82611784565b604082019050919050565b6000602082019050818103600083015261180f816117d3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061184c601d83611099565b915061185782611816565b602082019050919050565b6000602082019050818103600083015261187b8161183f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118de602583611099565b91506118e982611882565b604082019050919050565b6000602082019050818103600083015261190d816118d1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611970602383611099565b915061197b82611914565b604082019050919050565b6000602082019050818103600083015261199f81611963565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a02602683611099565b9150611a0d826119a6565b604082019050919050565b60006020820190508181036000830152611a31816119f5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a6e602083611099565b9150611a7982611a38565b602082019050919050565b60006020820190508181036000830152611a9d81611a61565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b00602183611099565b9150611b0b82611aa4565b604082019050919050565b60006020820190508181036000830152611b2f81611af3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b92602283611099565b9150611b9d82611b36565b604082019050919050565b60006020820190508181036000830152611bc181611b85565b905091905056fea264697066735822122069f0b9cdba8c4a9593ebe3455f0d9ba06d894e51a575b9da7cdff7552453c41864736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806349bd5a5e116100a257806395d89b411161007157806395d89b4114610296578063a457c2d7146102b4578063a9059cbb146102e4578063dd62ed3e14610314578063f2fde38b146103445761010b565b806349bd5a5e1461022057806370a082311461023e578063715018a61461026e5780638da5cb5b146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633ccfd60b146101fa57806342966c68146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610360565b604051610125919061111e565b60405180910390f35b610148600480360381019061014391906111d9565b6103f2565b6040516101559190611234565b60405180910390f35b610166610415565b604051610173919061125e565b60405180910390f35b61019660048036038101906101919190611279565b61041f565b6040516101a39190611234565b60405180910390f35b6101b461044e565b6040516101c191906112e8565b60405180910390f35b6101e460048036038101906101df91906111d9565b610457565b6040516101f19190611234565b60405180910390f35b61020261048e565b005b61021e60048036038101906102199190611303565b610558565b005b6102286105be565b604051610235919061133f565b60405180910390f35b6102586004803603810190610253919061135a565b6105e4565b604051610265919061125e565b60405180910390f35b61027661062c565b005b610280610640565b60405161028d919061133f565b60405180910390f35b61029e61066a565b6040516102ab919061111e565b60405180910390f35b6102ce60048036038101906102c991906111d9565b6106fc565b6040516102db9190611234565b60405180910390f35b6102fe60048036038101906102f991906111d9565b610773565b60405161030b9190611234565b60405180910390f35b61032e60048036038101906103299190611387565b610796565b60405161033b919061125e565b60405180910390f35b61035e6004803603810190610359919061135a565b61081d565b005b60606003805461036f906113f6565b80601f016020809104026020016040519081016040528092919081815260200182805461039b906113f6565b80156103e85780601f106103bd576101008083540402835291602001916103e8565b820191906000526020600020905b8154815290600101906020018083116103cb57829003601f168201915b5050505050905090565b6000806103fd6108a0565b905061040a8185856108a8565b600191505092915050565b6000600254905090565b60008061042a6108a0565b9050610437858285610a71565b610442858585610afd565b60019150509392505050565b60006012905090565b6000806104626108a0565b90506104838185856104748589610796565b61047e9190611456565b6108a8565b600191505092915050565b610496610d73565b60004790506000600190506104a9610640565b73ffffffffffffffffffffffffffffffffffffffff16826040516104cc906114bb565b60006040518083038185875af1925050503d8060008114610509576040519150601f19603f3d011682016040523d82523d6000602084013e61050e565b606091505b50508091505080610554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054b9061151c565b60405180910390fd5b5050565b806105696105646108a0565b6105e4565b10156105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a1906115ae565b60405180910390fd5b6105bb6105b56108a0565b82610df1565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610634610d73565b61063e6000610fbe565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610679906113f6565b80601f01602080910402602001604051908101604052809291908181526020018280546106a5906113f6565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b6000806107076108a0565b905060006107158286610796565b90508381101561075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190611640565b60405180910390fd5b61076782868684036108a8565b60019250505092915050565b60008061077e6108a0565b905061078b818585610afd565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610825610d73565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b906116d2565b60405180910390fd5b61089d81610fbe565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90611764565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d906117f6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a64919061125e565b60405180910390a3505050565b6000610a7d8484610796565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610af75781811015610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090611862565b60405180910390fd5b610af684848484036108a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b63906118f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290611986565b60405180910390fd5b610be6838383611084565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390611a18565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5a919061125e565b60405180910390a3610d6d848484611089565b50505050565b610d7b6108a0565b73ffffffffffffffffffffffffffffffffffffffff16610d99610640565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690611a84565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611b16565b60405180910390fd5b610e6c82600083611084565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990611ba8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa5919061125e565b60405180910390a3610fb983600084611089565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110c85780820151818401526020810190506110ad565b60008484015250505050565b6000601f19601f8301169050919050565b60006110f08261108e565b6110fa8185611099565b935061110a8185602086016110aa565b611113816110d4565b840191505092915050565b6000602082019050818103600083015261113881846110e5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061117082611145565b9050919050565b61118081611165565b811461118b57600080fd5b50565b60008135905061119d81611177565b92915050565b6000819050919050565b6111b6816111a3565b81146111c157600080fd5b50565b6000813590506111d3816111ad565b92915050565b600080604083850312156111f0576111ef611140565b5b60006111fe8582860161118e565b925050602061120f858286016111c4565b9150509250929050565b60008115159050919050565b61122e81611219565b82525050565b60006020820190506112496000830184611225565b92915050565b611258816111a3565b82525050565b6000602082019050611273600083018461124f565b92915050565b60008060006060848603121561129257611291611140565b5b60006112a08682870161118e565b93505060206112b18682870161118e565b92505060406112c2868287016111c4565b9150509250925092565b600060ff82169050919050565b6112e2816112cc565b82525050565b60006020820190506112fd60008301846112d9565b92915050565b60006020828403121561131957611318611140565b5b6000611327848285016111c4565b91505092915050565b61133981611165565b82525050565b60006020820190506113546000830184611330565b92915050565b6000602082840312156113705761136f611140565b5b600061137e8482850161118e565b91505092915050565b6000806040838503121561139e5761139d611140565b5b60006113ac8582860161118e565b92505060206113bd8582860161118e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140e57607f821691505b602082108103611421576114206113c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611461826111a3565b915061146c836111a3565b925082820190508082111561148457611483611427565b5b92915050565b600081905092915050565b50565b60006114a560008361148a565b91506114b082611495565b600082019050919050565b60006114c682611498565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000611506600f83611099565b9150611511826114d0565b602082019050919050565b60006020820190508181036000830152611535816114f9565b9050919050565b7f45524332303a206275726e20616d6f756e742065786365656473206f696c206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611598602683611099565b91506115a38261153c565b604082019050919050565b600060208201905081810360008301526115c78161158b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061162a602583611099565b9150611635826115ce565b604082019050919050565b600060208201905081810360008301526116598161161d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116bc602683611099565b91506116c782611660565b604082019050919050565b600060208201905081810360008301526116eb816116af565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061174e602483611099565b9150611759826116f2565b604082019050919050565b6000602082019050818103600083015261177d81611741565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117e0602283611099565b91506117eb82611784565b604082019050919050565b6000602082019050818103600083015261180f816117d3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061184c601d83611099565b915061185782611816565b602082019050919050565b6000602082019050818103600083015261187b8161183f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118de602583611099565b91506118e982611882565b604082019050919050565b6000602082019050818103600083015261190d816118d1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611970602383611099565b915061197b82611914565b604082019050919050565b6000602082019050818103600083015261199f81611963565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a02602683611099565b9150611a0d826119a6565b604082019050919050565b60006020820190508181036000830152611a31816119f5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a6e602083611099565b9150611a7982611a38565b602082019050919050565b60006020820190508181036000830152611a9d81611a61565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b00602183611099565b9150611b0b82611aa4565b604082019050919050565b60006020820190508181036000830152611b2f81611af3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b92602283611099565b9150611b9d82611b36565b604082019050919050565b60006020820190508181036000830152611bc181611b85565b905091905056fea264697066735822122069f0b9cdba8c4a9593ebe3455f0d9ba06d894e51a575b9da7cdff7552453c41864736f6c63430008120033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.