Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 12 from a total of 12 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
End | 19300374 | 281 days ago | IN | 0 ETH | 0.00396942 | ||||
End | 19243460 | 289 days ago | IN | 0 ETH | 0.00725079 | ||||
End | 19224300 | 292 days ago | IN | 0 ETH | 0.00337652 | ||||
End | 19224140 | 292 days ago | IN | 0 ETH | 0.00316505 | ||||
End | 19224105 | 292 days ago | IN | 0 ETH | 0.00268273 | ||||
End | 18008275 | 462 days ago | IN | 0 ETH | 0.00172451 | ||||
Start | 18008125 | 462 days ago | IN | 0 ETH | 0.00159551 | ||||
Start | 17780253 | 494 days ago | IN | 0 ETH | 0.00421021 | ||||
Start | 17779990 | 494 days ago | IN | 0 ETH | 0.00454477 | ||||
Start | 17774267 | 495 days ago | IN | 0 ETH | 0.0030625 | ||||
Start | 17774235 | 495 days ago | IN | 0 ETH | 0.00374732 | ||||
Start | 17774196 | 495 days ago | IN | 0 ETH | 0.0042907 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SingleStaking
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-19 */ // SPDX-License-Identifier: MIT // Single Staking contract for SerBridge. Easy access for projects to have asset to asset staking earning interest based on APY % pragma solidity ^0.8.2; /** * @title Owner * @dev Set & change owner */ contract Owner { address private owner; // event for EVM logging event OwnerSet(address indexed oldOwner, address indexed newOwner); // modifier to check if caller is owner modifier isOwner() { // If the first argument of 'require' evaluates to 'false', execution terminates and all // changes to the state and to Ether balances are reverted. // This used to consume all gas in old EVM versions, but not anymore. // It is often a good idea to use 'require' to check if functions are called correctly. // As a second argument, you can also provide an explanation about what went wrong. require(msg.sender == owner, "Caller is not owner"); _; } /** * @dev Set contract deployer as owner */ constructor(address _owner) { owner = _owner; emit OwnerSet(address(0), owner); } /** * @dev Change owner * @param newOwner address of new owner */ function changeOwner(address newOwner) public isOwner { emit OwnerSet(owner, newOwner); owner = newOwner; } /** * @dev Return owner address * @return address of owner */ function getOwner() public view returns (address) { return owner; } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 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); } /** * @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; } } /** * @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.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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 {} } /** * * Stakes is an interest gain contract for ERC-20 tokens * * assets is the ERC20 token * interest_rate: percentage rate * maturity is the time in seconds after which is safe to end the stake * penalization for ending a stake before maturity time * lower_amount is the minimum amount for creating a stake * */ contract SingleStaking is Owner, ReentrancyGuard { // token ERC20 public asset; // stakes history struct Record { uint256 from; uint256 amount; uint256 gain; uint256 penalization; uint256 to; bool ended; } // contract parameters uint16 public interest_rate; uint256 public maturity; uint8 public penalization; uint256 public lower_amount; mapping(address => Record[]) public ledger; event StakeStart(address indexed user, uint256 value, uint256 index); event StakeEnd(address indexed user, uint256 value, uint256 penalty, uint256 interest, uint256 index); constructor(ERC20 _erc20, address _owner, uint16 _rate, uint256 _maturity, uint8 _penalization, uint256 _lower) Owner(_owner) { require(_penalization<=100, "Penalty has to be an integer between 0 and 100"); asset = _erc20; interest_rate = _rate; maturity = _maturity; penalization = _penalization; lower_amount = _lower; } function start(uint256 _value) external nonReentrant { require(_value >= lower_amount, "Invalid value"); require(asset.transferFrom(msg.sender, address(this), _value)); ledger[msg.sender].push(Record(block.timestamp, _value, 0, 0, 0, false)); emit StakeStart(msg.sender, _value, ledger[msg.sender].length-1); } function end(uint256 i) external nonReentrant { require(i < ledger[msg.sender].length, "Invalid index"); require(ledger[msg.sender][i].ended==false, "Invalid stake"); // penalization if(block.timestamp - ledger[msg.sender][i].from < maturity) { uint256 _penalization = ledger[msg.sender][i].amount * penalization / 100; require(asset.transfer(msg.sender, ledger[msg.sender][i].amount - _penalization)); require(asset.transfer(getOwner(), _penalization)); ledger[msg.sender][i].penalization = _penalization; ledger[msg.sender][i].to = block.timestamp; ledger[msg.sender][i].ended = true; emit StakeEnd(msg.sender, ledger[msg.sender][i].amount, _penalization, 0, i); // interest gained } else { uint256 _interest = get_gains(msg.sender, i); // check that the owner can pay interest before trying to pay if (asset.allowance(getOwner(), address(this)) >= _interest && asset.balanceOf(getOwner()) >= _interest) { require(asset.transferFrom(getOwner(), msg.sender, _interest)); } else { _interest = 0; } require(asset.transfer(msg.sender, ledger[msg.sender][i].amount)); ledger[msg.sender][i].gain = _interest; ledger[msg.sender][i].to = block.timestamp; ledger[msg.sender][i].ended = true; emit StakeEnd(msg.sender, ledger[msg.sender][i].amount, 0, _interest, i); } } function set(uint256 _lower, uint256 _maturity, uint16 _rate, uint8 _penalization) external isOwner { require(_penalization<=100, "Invalid value"); lower_amount = _lower; maturity = _maturity; interest_rate = _rate; penalization = _penalization; } // calculate interest to the current date time function get_gains(address _address, uint256 _rec_number) public view returns (uint256) { uint256 _record_seconds = block.timestamp - ledger[_address][_rec_number].from; uint256 _year_seconds = 365*24*60*60; return _record_seconds * ledger[_address][_rec_number].amount * interest_rate / 100 / _year_seconds; } function ledger_length(address _address) external view returns (uint256) { return ledger[_address].length; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ERC20","name":"_erc20","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint16","name":"_rate","type":"uint16"},{"internalType":"uint256","name":"_maturity","type":"uint256"},{"internalType":"uint8","name":"_penalization","type":"uint8"},{"internalType":"uint256","name":"_lower","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"penalty","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interest","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"StakeEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"StakeStart","type":"event"},{"inputs":[],"name":"asset","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"end","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_rec_number","type":"uint256"}],"name":"get_gains","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"interest_rate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ledger","outputs":[{"internalType":"uint256","name":"from","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"gain","type":"uint256"},{"internalType":"uint256","name":"penalization","type":"uint256"},{"internalType":"uint256","name":"to","type":"uint256"},{"internalType":"bool","name":"ended","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"ledger_length","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lower_amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"penalization","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lower","type":"uint256"},{"internalType":"uint256","name":"_maturity","type":"uint256"},{"internalType":"uint16","name":"_rate","type":"uint16"},{"internalType":"uint8","name":"_penalization","type":"uint8"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516112ec3803806112ec83398101604081905261002f91610157565b600080546001600160a01b0319166001600160a01b03871690811782556040518792907f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a735908290a35060018055606460ff831611156100eb5760405162461bcd60e51b815260206004820152602e60248201527f50656e616c74792068617320746f20626520616e20696e74656765722062657460448201526d07765656e203020616e64203130360941b606482015260840160405180910390fd5b6002805461ffff909516600160a01b026001600160b01b03199095166001600160a01b0390971696909617939093179094556003556004805460ff90941660ff1990941693909317909255506005556101d7565b6001600160a01b038116811461015457600080fd5b50565b60008060008060008060c0878903121561017057600080fd5b865161017b8161013f565b602088015190965061018c8161013f565b604088015190955061ffff811681146101a457600080fd5b60608801516080890151919550935060ff811681146101c257600080fd5b8092505060a087015190509295509295509295565b611106806101e66000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806374f1ca3a1161008c578063a6f9dae111610066578063a6f9dae1146101d1578063aa4c0dd9146101e4578063b7f8f9ea1461020d578063cbb3d8081461022057600080fd5b806374f1ca3a1461016b578063893d20e8146101ad57806395805dad146101be57600080fd5b80630ad24528146100d45780630c98c9c1146100e957806314145b4814610105578063204f83f91461011857806338d52e0f1461012157806357ca87401461014c575b600080fd5b6100e76100e2366004610f45565b610248565b005b6100f260055481565b6040519081526020015b60405180910390f35b6100e7610113366004610f5e565b610a9a565b6100f260035481565b600254610134906001600160a01b031681565b6040516001600160a01b0390911681526020016100fc565b6004546101599060ff1681565b60405160ff90911681526020016100fc565b61017e610179366004610fd1565b610b70565b6040805196875260208701959095529385019290925260608401526080830152151560a082015260c0016100fc565b6000546001600160a01b0316610134565b6100e76101cc366004610f45565b610bc7565b6100e76101df366004610ffb565b610dc2565b6100f26101f2366004610ffb565b6001600160a01b031660009081526006602052604090205490565b6100f261021b366004610fd1565b610e6d565b60025461023590600160a01b900461ffff1681565b60405161ffff90911681526020016100fc565b60026001540361029f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026001553360009081526006602052604090205481106102f25760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b6044820152606401610296565b3360009081526006602052604090208054829081106103135761031361101d565b600091825260209091206005600690920201015460ff16156103675760405162461bcd60e51b815260206004820152600d60248201526c496e76616c6964207374616b6560981b6044820152606401610296565b60035433600090815260066020526040902080548390811061038b5761038b61101d565b906000526020600020906006020160000154426103a89190611049565b10156106aa576004543360009081526006602052604081208054919260649260ff9091169190859081106103de576103de61101d565b9060005260206000209060060201600101546103fa919061105c565b6104049190611073565b60025433600081815260066020526040902080549394506001600160a01b039092169263a9059cbb9285918790811061043f5761043f61101d565b90600052602060002090600602016001015461045b9190611049565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156104a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ca9190611095565b6104d357600080fd5b6002546001600160a01b031663a9059cbb6104f66000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610543573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105679190611095565b61057057600080fd5b3360009081526006602052604090208054829190849081106105945761059461101d565b6000918252602080832060069283020160030193909355338252909152604090208054429190849081106105ca576105ca61101d565b600091825260208083206006928302016004019390935533825290915260409020805460019190849081106106015761060161101d565b60009182526020808320600692830201600501805460ff1916941515949094179093553380835292526040902080547f1deb31f039e2645a4e97af07659090228d39e7f992bfaf37af3838ad9665e23a9190859081106106635761066361101d565b6000918252602082206001600690920201015460405161069c928691889093845260208401929092526040830152606082015260800190565b60405180910390a250610a93565b60006106b63383610e6d565b60025490915081906001600160a01b031663dd62ed3e6106de6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015610728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c91906110b7565b101580156107e5575060025481906001600160a01b03166370a0823161077a6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e291906110b7565b10155b15610892576002546001600160a01b03166323b872dd61080d6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152336024820152604481018490526064016020604051808303816000875af1158015610860573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108849190611095565b61088d57600080fd5b610896565b5060005b60025433600081815260066020526040902080546001600160a01b039093169263a9059cbb929190869081106108ce576108ce61101d565b60009182526020909120600160069092020101546040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190611095565b61095a57600080fd5b33600090815260066020526040902080548291908490811061097e5761097e61101d565b6000918252602080832060069283020160020193909355338252909152604090208054429190849081106109b4576109b461101d565b600091825260208083206006928302016004019390935533825290915260409020805460019190849081106109eb576109eb61101d565b60009182526020808320600692830201600501805460ff1916941515949094179093553380835292526040902080547f1deb31f039e2645a4e97af07659090228d39e7f992bfaf37af3838ad9665e23a919085908110610a4d57610a4d61101d565b90600052602060002090600602016001015460008486604051610a89949392919093845260208401929092526040830152606082015260800190565b60405180910390a2505b5060018055565b6000546001600160a01b03163314610aea5760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037bbb732b960691b6044820152606401610296565b60648160ff161115610b2e5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610296565b6005939093556003919091556002805461ffff60a01b1916600160a01b61ffff909316929092029190911790556004805460ff191660ff909216919091179055565b60066020528160005260406000208181548110610b8c57600080fd5b600091825260209091206006909102018054600182015460028301546003840154600485015460059095015493965091945092909160ff1686565b600260015403610c195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610296565b6002600155600554811015610c605760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610296565b6002546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610cb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cdb9190611095565b610ce457600080fd5b336000818152600660208181526040808420815160c081018352428152808401888152928101868152606082018781526080830188815260a08401898152855460018082018855878c52898c209651918b029096019081559651878601559251600287015590516003860155516004850155516005909301805460ff1916931515939093179092559385905291905290547f01030a23696d25d6138e45b2944d465c807d48422a2700ae29527f92b6cb439c918491610da39190611049565b6040805192835260208301919091520160405180910390a25060018055565b6000546001600160a01b03163314610e125760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037bbb732b960691b6044820152606401610296565b600080546040516001600160a01b03808516939216917f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73591a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166000908152600660205260408120805482919084908110610e9a57610e9a61101d565b90600052602060002090600602016000015442610eb79190611049565b6002546001600160a01b038616600090815260066020526040902080549293506301e13380928392606492600160a01b90910461ffff169188908110610eff57610eff61101d565b90600052602060002090600602016001015485610f1c919061105c565b610f26919061105c565b610f309190611073565b610f3a9190611073565b925050505b92915050565b600060208284031215610f5757600080fd5b5035919050565b60008060008060808587031215610f7457600080fd5b8435935060208501359250604085013561ffff81168114610f9457600080fd5b9150606085013560ff81168114610faa57600080fd5b939692955090935050565b80356001600160a01b0381168114610fcc57600080fd5b919050565b60008060408385031215610fe457600080fd5b610fed83610fb5565b946020939093013593505050565b60006020828403121561100d57600080fd5b61101682610fb5565b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610f3f57610f3f611033565b8082028115828204841417610f3f57610f3f611033565b60008261109057634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156110a757600080fd5b8151801515811461101657600080fd5b6000602082840312156110c957600080fd5b505191905056fea26469706673582212201364d5ad44e29bc8b3906abcfce8840675a82051578699a5f18d5b9a59d0159e64736f6c634300081100330000000000000000000000009b85fa50f2d0f48363f5199ac679402ca5a58d2c000000000000000000000000e24ef2db22c60b30a398f8fbac027bdb69f771a100000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000ed4e0000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806374f1ca3a1161008c578063a6f9dae111610066578063a6f9dae1146101d1578063aa4c0dd9146101e4578063b7f8f9ea1461020d578063cbb3d8081461022057600080fd5b806374f1ca3a1461016b578063893d20e8146101ad57806395805dad146101be57600080fd5b80630ad24528146100d45780630c98c9c1146100e957806314145b4814610105578063204f83f91461011857806338d52e0f1461012157806357ca87401461014c575b600080fd5b6100e76100e2366004610f45565b610248565b005b6100f260055481565b6040519081526020015b60405180910390f35b6100e7610113366004610f5e565b610a9a565b6100f260035481565b600254610134906001600160a01b031681565b6040516001600160a01b0390911681526020016100fc565b6004546101599060ff1681565b60405160ff90911681526020016100fc565b61017e610179366004610fd1565b610b70565b6040805196875260208701959095529385019290925260608401526080830152151560a082015260c0016100fc565b6000546001600160a01b0316610134565b6100e76101cc366004610f45565b610bc7565b6100e76101df366004610ffb565b610dc2565b6100f26101f2366004610ffb565b6001600160a01b031660009081526006602052604090205490565b6100f261021b366004610fd1565b610e6d565b60025461023590600160a01b900461ffff1681565b60405161ffff90911681526020016100fc565b60026001540361029f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026001553360009081526006602052604090205481106102f25760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b6044820152606401610296565b3360009081526006602052604090208054829081106103135761031361101d565b600091825260209091206005600690920201015460ff16156103675760405162461bcd60e51b815260206004820152600d60248201526c496e76616c6964207374616b6560981b6044820152606401610296565b60035433600090815260066020526040902080548390811061038b5761038b61101d565b906000526020600020906006020160000154426103a89190611049565b10156106aa576004543360009081526006602052604081208054919260649260ff9091169190859081106103de576103de61101d565b9060005260206000209060060201600101546103fa919061105c565b6104049190611073565b60025433600081815260066020526040902080549394506001600160a01b039092169263a9059cbb9285918790811061043f5761043f61101d565b90600052602060002090600602016001015461045b9190611049565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156104a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ca9190611095565b6104d357600080fd5b6002546001600160a01b031663a9059cbb6104f66000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610543573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105679190611095565b61057057600080fd5b3360009081526006602052604090208054829190849081106105945761059461101d565b6000918252602080832060069283020160030193909355338252909152604090208054429190849081106105ca576105ca61101d565b600091825260208083206006928302016004019390935533825290915260409020805460019190849081106106015761060161101d565b60009182526020808320600692830201600501805460ff1916941515949094179093553380835292526040902080547f1deb31f039e2645a4e97af07659090228d39e7f992bfaf37af3838ad9665e23a9190859081106106635761066361101d565b6000918252602082206001600690920201015460405161069c928691889093845260208401929092526040830152606082015260800190565b60405180910390a250610a93565b60006106b63383610e6d565b60025490915081906001600160a01b031663dd62ed3e6106de6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015610728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c91906110b7565b101580156107e5575060025481906001600160a01b03166370a0823161077a6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e291906110b7565b10155b15610892576002546001600160a01b03166323b872dd61080d6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152336024820152604481018490526064016020604051808303816000875af1158015610860573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108849190611095565b61088d57600080fd5b610896565b5060005b60025433600081815260066020526040902080546001600160a01b039093169263a9059cbb929190869081106108ce576108ce61101d565b60009182526020909120600160069092020101546040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190611095565b61095a57600080fd5b33600090815260066020526040902080548291908490811061097e5761097e61101d565b6000918252602080832060069283020160020193909355338252909152604090208054429190849081106109b4576109b461101d565b600091825260208083206006928302016004019390935533825290915260409020805460019190849081106109eb576109eb61101d565b60009182526020808320600692830201600501805460ff1916941515949094179093553380835292526040902080547f1deb31f039e2645a4e97af07659090228d39e7f992bfaf37af3838ad9665e23a919085908110610a4d57610a4d61101d565b90600052602060002090600602016001015460008486604051610a89949392919093845260208401929092526040830152606082015260800190565b60405180910390a2505b5060018055565b6000546001600160a01b03163314610aea5760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037bbb732b960691b6044820152606401610296565b60648160ff161115610b2e5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610296565b6005939093556003919091556002805461ffff60a01b1916600160a01b61ffff909316929092029190911790556004805460ff191660ff909216919091179055565b60066020528160005260406000208181548110610b8c57600080fd5b600091825260209091206006909102018054600182015460028301546003840154600485015460059095015493965091945092909160ff1686565b600260015403610c195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610296565b6002600155600554811015610c605760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610296565b6002546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610cb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cdb9190611095565b610ce457600080fd5b336000818152600660208181526040808420815160c081018352428152808401888152928101868152606082018781526080830188815260a08401898152855460018082018855878c52898c209651918b029096019081559651878601559251600287015590516003860155516004850155516005909301805460ff1916931515939093179092559385905291905290547f01030a23696d25d6138e45b2944d465c807d48422a2700ae29527f92b6cb439c918491610da39190611049565b6040805192835260208301919091520160405180910390a25060018055565b6000546001600160a01b03163314610e125760405162461bcd60e51b815260206004820152601360248201527221b0b63632b91034b9903737ba1037bbb732b960691b6044820152606401610296565b600080546040516001600160a01b03808516939216917f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73591a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166000908152600660205260408120805482919084908110610e9a57610e9a61101d565b90600052602060002090600602016000015442610eb79190611049565b6002546001600160a01b038616600090815260066020526040902080549293506301e13380928392606492600160a01b90910461ffff169188908110610eff57610eff61101d565b90600052602060002090600602016001015485610f1c919061105c565b610f26919061105c565b610f309190611073565b610f3a9190611073565b925050505b92915050565b600060208284031215610f5757600080fd5b5035919050565b60008060008060808587031215610f7457600080fd5b8435935060208501359250604085013561ffff81168114610f9457600080fd5b9150606085013560ff81168114610faa57600080fd5b939692955090935050565b80356001600160a01b0381168114610fcc57600080fd5b919050565b60008060408385031215610fe457600080fd5b610fed83610fb5565b946020939093013593505050565b60006020828403121561100d57600080fd5b61101682610fb5565b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610f3f57610f3f611033565b8082028115828204841417610f3f57610f3f611033565b60008261109057634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156110a757600080fd5b8151801515811461101657600080fd5b6000602082840312156110c957600080fd5b505191905056fea26469706673582212201364d5ad44e29bc8b3906abcfce8840675a82051578699a5f18d5b9a59d0159e64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009b85fa50f2d0f48363f5199ac679402ca5a58d2c000000000000000000000000e24ef2db22c60b30a398f8fbac027bdb69f771a100000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000ed4e0000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _erc20 (address): 0x9B85Fa50f2d0F48363f5199ac679402cA5A58d2C
Arg [1] : _owner (address): 0xE24eF2Db22c60b30A398f8fbaC027bDb69F771A1
Arg [2] : _rate (uint16): 200
Arg [3] : _maturity (uint256): 15552000
Arg [4] : _penalization (uint8): 100
Arg [5] : _lower (uint256): 0
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000009b85fa50f2d0f48363f5199ac679402ca5a58d2c
Arg [1] : 000000000000000000000000e24ef2db22c60b30a398f8fbac027bdb69f771a1
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000ed4e00
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
20508:3895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21960:1597;;;;;;:::i;:::-;;:::i;:::-;;20932:27;;;;;;;;;345:25:1;;;333:2;318:18;20932:27:0;;;;;;;;23565:297;;;;;;:::i;:::-;;:::i;20870:23::-;;;;;;20584:18;;;;;-1:-1:-1;;;;;20584:18:0;;;;;;-1:-1:-1;;;;;1137:32:1;;;1119:51;;1107:2;1092:18;20584::0;960:216:1;20900:25:0;;;;;;;;;;;;1353:4:1;1341:17;;;1323:36;;1311:2;1296:18;20900:25:0;1181:184:1;20968:42:0;;;;;;:::i;:::-;;:::i;:::-;;;;2088:25:1;;;2144:2;2129:18;;2122:34;;;;2172:18;;;2165:34;;;;2230:2;2215:18;;2208:34;2273:3;2258:19;;2251:35;2330:14;2323:22;2317:3;2302:19;;2295:51;2075:3;2060:19;20968:42:0;1807:545:1;1498:81:0;1539:7;1566:5;-1:-1:-1;;;;;1566:5:0;1498:81;;21601:351;;;;;;:::i;:::-;;:::i;1274:130::-;;;;;;:::i;:::-;;:::i;24276:122::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24367:16:0;24340:7;24367:16;;;:6;:16;;;;;:23;;24276:122;23926:342;;;;;;:::i;:::-;;:::i;20836:27::-;;;;;-1:-1:-1;;;20836:27:0;;;;;;;;;2930:6:1;2918:19;;;2900:38;;2888:2;2873:18;20836:27:0;2756:188:1;21960:1597:0;3237:1;3835:7;;:19;3827:63;;;;-1:-1:-1;;;3827:63:0;;3151:2:1;3827:63:0;;;3133:21:1;3190:2;3170:18;;;3163:30;3229:33;3209:18;;;3202:61;3280:18;;3827:63:0;;;;;;;;;3237:1;3968:7;:18;22038:10:::1;22031:18;::::0;;;:6:::1;:18;::::0;;;;:25;22027:29;::::1;22019:55;;;::::0;-1:-1:-1;;;22019:55:0;;3511:2:1;22019:55:0::1;::::0;::::1;3493:21:1::0;3550:2;3530:18;;;3523:30;-1:-1:-1;;;3569:18:1;;;3562:43;3622:18;;22019:55:0::1;3309:337:1::0;22019:55:0::1;22100:10;22093:18;::::0;;;:6:::1;:18;::::0;;;;:21;;22112:1;;22093:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:27:::1;:21;::::0;;::::1;;:27;::::0;::::1;;:34;22085:60;;;::::0;-1:-1:-1;;;22085:60:0;;3985:2:1;22085:60:0::1;::::0;::::1;3967:21:1::0;4024:2;4004:18;;;3997:30;-1:-1:-1;;;4043:18:1;;;4036:43;4096:18;;22085:60:0::1;3783:337:1::0;22085:60:0::1;22241:8;::::0;22219:10:::1;22212:18;::::0;;;:6:::1;:18;::::0;;;;:21;;22231:1;;22212:21;::::1;;;;;:::i;:::-;;;;;;;;;;;:26;;;22194:15;:44;;;;:::i;:::-;:55;22191:1359;;;22321:12;::::0;22297:10:::1;22266:21;22290:18:::0;;;:6:::1;:18;::::0;;;;:21;;22266;;22336:3:::1;::::0;22321:12:::1;::::0;;::::1;::::0;22290:18;22309:1;;22290:21;::::1;;;;;:::i;:::-;;;;;;;;;;;:28;;;:43;;;;:::i;:::-;:49;;;;:::i;:::-;22362:5;::::0;22377:10:::1;22362:5;22389:18:::0;;;:6:::1;:18;::::0;;;;:21;;22266:73;;-1:-1:-1;;;;;;22362:5:0;;::::1;::::0;:14:::1;::::0;22266:73;;22408:1;;22389:21;::::1;;;;;:::i;:::-;;;;;;;;;;;:28;;;:44;;;;:::i;:::-;22362:72;::::0;-1:-1:-1;;;;;;22362:72:0::1;::::0;;;;;;-1:-1:-1;;;;;4977:32:1;;;22362:72:0::1;::::0;::::1;4959:51:1::0;5026:18;;;5019:34;4932:18;;22362:72:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22354:81;;;::::0;::::1;;22458:5;::::0;-1:-1:-1;;;;;22458:5:0::1;:14;22473:10;1539:7:::0;1566:5;-1:-1:-1;;;;;1566:5:0;;1498:81;22473:10:::1;22458:41;::::0;-1:-1:-1;;;;;;22458:41:0::1;::::0;;;;;;-1:-1:-1;;;;;4977:32:1;;;22458:41:0::1;::::0;::::1;4959:51:1::0;5026:18;;;5019:34;;;4932:18;;22458:41:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22450:50;;;::::0;::::1;;22522:10;22515:18;::::0;;;:6:::1;:18;::::0;;;;:21;;22552:13;;22515:18;22534:1;;22515:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:34;;:50:::0;;;;22587:10:::1;22580:18:::0;;;;;;;;:21;;22607:15:::1;::::0;22580:18;22599:1;;22580:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:24;;:42:::0;;;;22644:10:::1;22637:18:::0;;;;;;;;:21;;22667:4:::1;::::0;22637:18;22656:1;;22637:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:27;;:34:::0;;-1:-1:-1;;22637:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;22700:10:::1;22712:18:::0;;;;;;;;:21;;22691:71:::1;::::0;22712:18;22731:1;;22712:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;:28:::1;:21;::::0;;::::1;;:28;::::0;22691:71:::1;::::0;::::1;::::0;22742:13;;22760:1;;5585:25:1;;;5641:2;5626:18;;5619:34;;;;5684:2;5669:18;;5662:34;5727:2;5712:18;;5705:34;5572:3;5557:19;;5346:399;22691:71:0::1;;;;;;;;22251:551;22191:1359;;;22823:17;22843:24;22853:10;22865:1;22843:9;:24::i;:::-;22961:5;::::0;22823:44;;-1:-1:-1;22823:44:0;;-1:-1:-1;;;;;22961:5:0::1;:15;22977:10;1539:7:::0;1566:5;-1:-1:-1;;;;;1566:5:0;;1498:81;22977:10:::1;22961:42;::::0;-1:-1:-1;;;;;;22961:42:0::1;::::0;;;;;;-1:-1:-1;;;;;5980:15:1;;;22961:42:0::1;::::0;::::1;5962:34:1::0;22997:4:0::1;6012:18:1::0;;;6005:43;5897:18;;22961:42:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;:99;;;;-1:-1:-1::0;23020:5:0::1;::::0;23051:9;;-1:-1:-1;;;;;23020:5:0::1;:15;23036:10;1539:7:::0;1566:5;-1:-1:-1;;;;;1566:5:0;;1498:81;23036:10:::1;23020:27;::::0;-1:-1:-1;;;;;;23020:27:0::1;::::0;;;;;;-1:-1:-1;;;;;1137:32:1;;;23020:27:0::1;::::0;::::1;1119:51:1::0;1092:18;;23020:27:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;22961:99;22957:256;;;23089:5;::::0;-1:-1:-1;;;;;23089:5:0::1;:18;23108:10;1539:7:::0;1566:5;-1:-1:-1;;;;;1566:5:0;;1498:81;23108:10:::1;23089:53;::::0;-1:-1:-1;;;;;;23089:53:0::1;::::0;;;;;;-1:-1:-1;;;;;6506:15:1;;;23089:53:0::1;::::0;::::1;6488:34:1::0;23120:10:0::1;6538:18:1::0;;;6531:43;6590:18;;;6583:34;;;6423:18;;23089:53:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23081:62;;;::::0;::::1;;22957:256;;;-1:-1:-1::0;23196:1:0::1;22957:256;23235:5;::::0;23250:10:::1;23235:5;23262:18:::0;;;:6:::1;:18;::::0;;;;:21;;-1:-1:-1;;;;;23235:5:0;;::::1;::::0;:14:::1;::::0;23250:10;23262:18;23281:1;;23262:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:28:::1;:21;::::0;;::::1;;:28;::::0;23235:56:::1;::::0;-1:-1:-1;;;;;;23235:56:0::1;::::0;;;;;;-1:-1:-1;;;;;4977:32:1;;;23235:56:0::1;::::0;::::1;4959:51:1::0;5026:18;;;5019:34;4932:18;;23235:56:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23227:65;;;::::0;::::1;;23314:10;23307:18;::::0;;;:6:::1;:18;::::0;;;;:21;;23336:9;;23307:18;23326:1;;23307:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:26;;:38:::0;;;;23367:10:::1;23360:18:::0;;;;;;;;:21;;23387:15:::1;::::0;23360:18;23379:1;;23360:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:24;;:42:::0;;;;23424:10:::1;23417:18:::0;;;;;;;;:21;;23447:4:::1;::::0;23417:18;23436:1;;23417:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:27;;:34:::0;;-1:-1:-1;;23417:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;23480:10:::1;23492:18:::0;;;;;;;;:21;;23471:67:::1;::::0;23492:18;23511:1;;23492:21;::::1;;;;;:::i;:::-;;;;;;;;;;;:28;;;23522:1;23525:9;23536:1;23471:67;;;;;;;;5585:25:1::0;;;5641:2;5626:18;;5619:34;;;;5684:2;5669:18;;5662:34;5727:2;5712:18;;5705:34;5572:3;5557:19;;5346:399;23471:67:0::1;;;;;;;;22808:742;22191:1359;-1:-1:-1::0;3193:1:0;4147:22;;21960:1597::o;23565:297::-;950:5;;-1:-1:-1;;;;;950:5:0;936:10;:19;928:51;;;;-1:-1:-1;;;928:51:0;;7234:2:1;928:51:0;;;7216:21:1;7273:2;7253:18;;;7246:30;-1:-1:-1;;;7292:18:1;;;7285:49;7351:18;;928:51:0;7032:343:1;928:51:0;23699:3:::1;23684:13;:18;;;;23676:44;;;::::0;-1:-1:-1;;;23676:44:0;;7582:2:1;23676:44:0::1;::::0;::::1;7564:21:1::0;7621:2;7601:18;;;7594:30;-1:-1:-1;;;7640:18:1;;;7633:43;7693:18;;23676:44:0::1;7380:337:1::0;23676:44:0::1;23731:12;:21:::0;;;;23763:8:::1;:20:::0;;;;-1:-1:-1;23794:21:0;;-1:-1:-1;;;;23794:21:0::1;-1:-1:-1::0;;;23794:21:0::1;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;23826:12:::1;:28:::0;;-1:-1:-1;;23826:28:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;23565:297::o;20968:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20968:42:0;;-1:-1:-1;20968:42:0;;;;;;:::o;21601:351::-;3237:1;3835:7;;:19;3827:63;;;;-1:-1:-1;;;3827:63:0;;3151:2:1;3827:63:0;;;3133:21:1;3190:2;3170:18;;;3163:30;3229:33;3209:18;;;3202:61;3280:18;;3827:63:0;2949:355:1;3827:63:0;3237:1;3968:7;:18;21683:12:::1;::::0;21673:22;::::1;;21665:48;;;::::0;-1:-1:-1;;;21665:48:0;;7582:2:1;21665:48:0::1;::::0;::::1;7564:21:1::0;7621:2;7601:18;;;7594:30;-1:-1:-1;;;7640:18:1;;;7633:43;7693:18;;21665:48:0::1;7380:337:1::0;21665:48:0::1;21732:5;::::0;:53:::1;::::0;-1:-1:-1;;;21732:53:0;;21751:10:::1;21732:53;::::0;::::1;6488:34:1::0;21771:4:0::1;6538:18:1::0;;;6531:43;6590:18;;;6583:34;;;-1:-1:-1;;;;;21732:5:0;;::::1;::::0;:18:::1;::::0;6423::1;;21732:53:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21724:62;;;::::0;::::1;;21804:10;21797:18;::::0;;;:6:::1;:18;::::0;;;;;;;21821:47;;::::1;::::0;::::1;::::0;;21828:15:::1;21821:47:::0;;;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;21797:72;;21821:47;21797:72;;::::1;::::0;;;;;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;21797:72:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21916:18;;;;;;;:25;;21885:59:::1;::::0;21821:47;;21916:27:::1;::::0;21821:47;21916:27:::1;:::i;:::-;21885:59;::::0;;7896:25:1;;;7952:2;7937:18;;7930:34;;;;7869:18;21885:59:0::1;;;;;;;-1:-1:-1::0;3193:1:0;4147:22;;21601:351::o;1274:130::-;950:5;;-1:-1:-1;;;;;950:5:0;936:10;:19;928:51;;;;-1:-1:-1;;;928:51:0;;7234:2:1;928:51:0;;;7216:21:1;7273:2;7253:18;;;7246:30;-1:-1:-1;;;7292:18:1;;;7285:49;7351:18;;928:51:0;7032:343:1;928:51:0;1353:5:::1;::::0;;1344:25:::1;::::0;-1:-1:-1;;;;;1344:25:0;;::::1;::::0;1353:5;::::1;::::0;1344:25:::1;::::0;::::1;1380:5;:16:::0;;-1:-1:-1;;;;;;1380:16:0::1;-1:-1:-1::0;;;;;1380:16:0;;;::::1;::::0;;;::::1;::::0;;1274:130::o;23926:342::-;-1:-1:-1;;;;;24069:16:0;;24005:7;24069:16;;;:6;:16;;;;;:29;;24005:7;;24069:16;24086:11;;24069:29;;;;;;:::i;:::-;;;;;;;;;;;:34;;;24051:15;:52;;;;:::i;:::-;24225:13;;-1:-1:-1;;;;;24186:16:0;;24114:21;24186:16;;;:6;:16;;;;;:29;;24025:78;;-1:-1:-1;24138:12:0;;;;24241:3;;-1:-1:-1;;;24225:13:0;;;;;;24203:11;;24186:29;;;;;;:::i;:::-;;;;;;;;;;;:36;;;24168:15;:54;;;;:::i;:::-;:70;;;;:::i;:::-;:76;;;;:::i;:::-;:92;;;;:::i;:::-;24161:99;;;;23926:342;;;;;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;381:574::-;464:6;472;480;488;541:3;529:9;520:7;516:23;512:33;509:53;;;558:1;555;548:12;509:53;594:9;581:23;571:33;;651:2;640:9;636:18;623:32;613:42;;705:2;694:9;690:18;677:32;749:6;742:5;738:18;731:5;728:29;718:57;;771:1;768;761:12;718:57;794:5;-1:-1:-1;851:2:1;836:18;;823:32;899:4;886:18;;874:31;;864:59;;919:1;916;909:12;864:59;381:574;;;;-1:-1:-1;381:574:1;;-1:-1:-1;;381:574:1:o;1370:173::-;1438:20;;-1:-1:-1;;;;;1487:31:1;;1477:42;;1467:70;;1533:1;1530;1523:12;1467:70;1370:173;;;:::o;1548:254::-;1616:6;1624;1677:2;1665:9;1656:7;1652:23;1648:32;1645:52;;;1693:1;1690;1683:12;1645:52;1716:29;1735:9;1716:29;:::i;:::-;1706:39;1792:2;1777:18;;;;1764:32;;-1:-1:-1;;;1548:254:1:o;2565:186::-;2624:6;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2565:186;-1:-1:-1;;;2565:186:1:o;3651:127::-;3712:10;3707:3;3703:20;3700:1;3693:31;3743:4;3740:1;3733:15;3767:4;3764:1;3757:15;4125:127;4186:10;4181:3;4177:20;4174:1;4167:31;4217:4;4214:1;4207:15;4241:4;4238:1;4231:15;4257:128;4324:9;;;4345:11;;;4342:37;;;4359:18;;:::i;4390:168::-;4463:9;;;4494;;4511:15;;;4505:22;;4491:37;4481:71;;4532:18;;:::i;4563:217::-;4603:1;4629;4619:132;;4673:10;4668:3;4664:20;4661:1;4654:31;4708:4;4705:1;4698:15;4736:4;4733:1;4726:15;4619:132;-1:-1:-1;4765:9:1;;4563:217::o;5064:277::-;5131:6;5184:2;5172:9;5163:7;5159:23;5155:32;5152:52;;;5200:1;5197;5190:12;5152:52;5232:9;5226:16;5285:5;5278:13;5271:21;5264:5;5261:32;5251:60;;5307:1;5304;5297:12;6059:184;6129:6;6182:2;6170:9;6161:7;6157:23;6153:32;6150:52;;;6198:1;6195;6188:12;6150:52;-1:-1:-1;6221:16:1;;6059:184;-1:-1:-1;6059:184:1:o
Swarm Source
ipfs://1364d5ad44e29bc8b3906abcfce8840675a82051578699a5f18d5b9a59d0159e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 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.