Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 2 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 8369788 | 2417 days ago | Contract Creation | 0 ETH | |||
| - | 8343258 | 2421 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MetadataPooledCDAIFactory
Compiler Version
v0.5.10+commit.5a6ea5b1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2019-08-13
*/
pragma solidity >=0.4.21 <0.6.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see `ERC20Detailed`.
*/
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.
*
* > 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 Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, "SafeMath: division by zero");
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0, "SafeMath: modulo by zero");
return a % b;
}
}
/**
* @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 `ERC20Mintable`.
*
* *For a detailed writeup see our guide [How to implement supply
* mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of 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 IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
/**
* @dev See `IERC20.totalSupply`.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See `IERC20.balanceOf`.
*/
function balanceOf(address account) public view 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 returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See `IERC20.allowance`.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See `IERC20.approve`.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
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 `value`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(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 returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(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 returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is 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 {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(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
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destoys `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 value) internal {
require(account != address(0), "ERC20: burn from the zero address");
_totalSupply = _totalSupply.sub(value);
_balances[account] = _balances[account].sub(value);
emit Transfer(account, address(0), value);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is 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 value) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Destoys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See `_burn` and `_approve`.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
}
}
/**
* @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.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be aplied to your functions to restrict their use to
* the owner.
*/
contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
_owner = msg.sender;
emit OwnershipTransferred(address(0), _owner);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return msg.sender == _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 onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = 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 onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// Compound finance ERC20 market interface
interface CERC20 {
function mint(uint mintAmount) external returns (uint);
function redeemUnderlying(uint redeemAmount) external returns (uint);
function borrow(uint borrowAmount) external returns (uint);
function repayBorrow(uint repayAmount) external returns (uint);
function borrowBalanceCurrent(address account) external returns (uint);
function exchangeRateCurrent() external returns (uint);
function transfer(address recipient, uint256 amount) external returns (bool);
function balanceOf(address account) external view returns (uint);
function decimals() external view returns (uint);
function underlying() external view returns (address);
function exchangeRateStored() external view returns (uint);
}
// Compound finance comptroller
interface Comptroller {
function enterMarkets(address[] calldata cTokens) external returns (uint[] memory);
function markets(address cToken) external view returns (bool isListed, uint256 collateralFactorMantissa);
}
contract PooledCDAI is ERC20, Ownable {
uint256 internal constant PRECISION = 10 ** 18;
address public constant COMPTROLLER_ADDRESS = 0x3d9819210A31b4961b30EF54bE2aeD79B9c9Cd3B;
address public constant CDAI_ADDRESS = 0xF5DCe57282A584D2746FaF1593d3121Fcac444dC;
address public constant DAI_ADDRESS = 0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359;
string private _name;
string private _symbol;
address public beneficiary; // the account that will receive the interests from Compound
event Mint(address indexed sender, address indexed to, uint256 amount);
event Burn(address indexed sender, address indexed to, uint256 amount);
event WithdrawInterest(address indexed sender, address beneficiary, uint256 amount, bool indexed inDAI);
event SetBeneficiary(address oldBeneficiary, address newBeneficiary);
/**
* @dev Sets the values for `name` and `symbol`. Both of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, address _beneficiary) public {
_name = name;
_symbol = symbol;
// Set beneficiary
require(_beneficiary != address(0), "Beneficiary can't be zero");
beneficiary = _beneficiary;
emit SetBeneficiary(address(0), _beneficiary);
// Enter cDAI market
Comptroller troll = Comptroller(COMPTROLLER_ADDRESS);
address[] memory cTokens = new address[](1);
cTokens[0] = CDAI_ADDRESS;
uint[] memory errors = troll.enterMarkets(cTokens);
require(errors[0] == 0, "Failed to enter cDAI market");
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view 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.
*
* 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 pure returns (uint8) {
return 18;
}
function mint(address to, uint256 amount) public returns (bool) {
// transfer `amount` DAI from msg.sender
ERC20 dai = ERC20(DAI_ADDRESS);
require(dai.transferFrom(msg.sender, address(this), amount), "Failed to transfer DAI from msg.sender");
// use `amount` DAI to mint cDAI
CERC20 cDAI = CERC20(CDAI_ADDRESS);
require(dai.approve(CDAI_ADDRESS, 0), "Failed to clear DAI allowance");
require(dai.approve(CDAI_ADDRESS, amount), "Failed to set DAI allowance");
require(cDAI.mint(amount) == 0, "Failed to mint cDAI");
// mint `amount` pcDAI for `to`
_mint(to, amount);
// emit event
emit Mint(msg.sender, to, amount);
return true;
}
function burn(address to, uint256 amount) public returns (bool) {
// burn `amount` pcDAI for msg.sender
_burn(msg.sender, amount);
// burn cDAI for `amount` DAI
CERC20 cDAI = CERC20(CDAI_ADDRESS);
require(cDAI.redeemUnderlying(amount) == 0, "Failed to redeem");
// transfer DAI to `to`
ERC20 dai = ERC20(DAI_ADDRESS);
require(dai.transfer(to, amount), "Failed to transfer DAI to target");
// emit event
emit Burn(msg.sender, to, amount);
return true;
}
function accruedInterestCurrent() public returns (uint256) {
CERC20 cDAI = CERC20(CDAI_ADDRESS);
return cDAI.exchangeRateCurrent().mul(cDAI.balanceOf(address(this))).div(PRECISION).sub(totalSupply());
}
function accruedInterestStored() public view returns (uint256) {
CERC20 cDAI = CERC20(CDAI_ADDRESS);
return cDAI.exchangeRateStored().mul(cDAI.balanceOf(address(this))).div(PRECISION).sub(totalSupply());
}
function withdrawInterestInDAI() public returns (bool) {
// calculate amount of interest in DAI
uint256 interestAmount = accruedInterestCurrent();
// burn cDAI
CERC20 cDAI = CERC20(CDAI_ADDRESS);
require(cDAI.redeemUnderlying(interestAmount) == 0, "Failed to redeem");
// transfer DAI to beneficiary
ERC20 dai = ERC20(DAI_ADDRESS);
require(dai.transfer(beneficiary, interestAmount), "Failed to transfer DAI to beneficiary");
emit WithdrawInterest(msg.sender, beneficiary, interestAmount, true);
return true;
}
function withdrawInterestInCDAI() public returns (bool) {
// calculate amount of cDAI to transfer
CERC20 cDAI = CERC20(CDAI_ADDRESS);
uint256 interestAmountInCDAI = accruedInterestCurrent().mul(PRECISION).div(cDAI.exchangeRateCurrent());
// transfer cDAI to beneficiary
require(cDAI.transfer(beneficiary, interestAmountInCDAI), "Failed to transfer cDAI to beneficiary");
// emit event
emit WithdrawInterest(msg.sender, beneficiary, interestAmountInCDAI, false);
return true;
}
function setBeneficiary(address newBeneficiary) public onlyOwner returns (bool) {
require(newBeneficiary != address(0), "Beneficiary can't be zero");
emit SetBeneficiary(beneficiary, newBeneficiary);
beneficiary = newBeneficiary;
return true;
}
function() external payable {
revert("Contract doesn't support receiving Ether");
}
}
contract PooledCDAIFactory {
event CreatePool(address sender, address pool, bool indexed renounceOwnership);
function createPCDAI(string memory name, string memory symbol, address _beneficiary, bool renounceOwnership) public returns (PooledCDAI) {
PooledCDAI pcDAI = _createPCDAI(name, symbol, _beneficiary, renounceOwnership);
emit CreatePool(msg.sender, address(pcDAI), renounceOwnership);
return pcDAI;
}
function _createPCDAI(string memory name, string memory symbol, address _beneficiary, bool renounceOwnership) internal returns (PooledCDAI) {
PooledCDAI pcDAI = new PooledCDAI(name, symbol, _beneficiary);
if (renounceOwnership) {
pcDAI.renounceOwnership();
} else {
pcDAI.transferOwnership(msg.sender);
}
return pcDAI;
}
}
contract MetadataPooledCDAIFactory is PooledCDAIFactory {
event CreatePoolWithMetadata(address sender, address pool, bool indexed renounceOwnership, bytes metadata);
function createPCDAIWithMetadata(
string memory name,
string memory symbol,
address _beneficiary,
bool renounceOwnership,
bytes memory metadata
) public returns (PooledCDAI) {
PooledCDAI pcDAI = _createPCDAI(name, symbol, _beneficiary, renounceOwnership);
emit CreatePoolWithMetadata(msg.sender, address(pcDAI), renounceOwnership, metadata);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"_beneficiary","type":"address"},{"name":"renounceOwnership","type":"bool"}],"name":"createPCDAI","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"_beneficiary","type":"address"},{"name":"renounceOwnership","type":"bool"},{"name":"metadata","type":"bytes"}],"name":"createPCDAIWithMetadata","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"pool","type":"address"},{"indexed":true,"name":"renounceOwnership","type":"bool"},{"indexed":false,"name":"metadata","type":"bytes"}],"name":"CreatePoolWithMetadata","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"pool","type":"address"},{"indexed":true,"name":"renounceOwnership","type":"bool"}],"name":"CreatePool","type":"event"}]Contract Creation Code
608060405234801561001057600080fd5b50612a53806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80635bbbe8411461003b578063680d447714610190575b600080fd5b6101746004803603608081101561005157600080fd5b810190602081018135600160201b81111561006b57600080fd5b82018360208201111561007d57600080fd5b803590602001918460018302840111600160201b8311171561009e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156100f057600080fd5b82018360208201111561010257600080fd5b803590602001918460018302840111600160201b8311171561012357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550506001600160a01b0383351693505050602001351515610355565b604080516001600160a01b039092168252519081900360200190f35b610174600480360360a08110156101a657600080fd5b810190602081018135600160201b8111156101c057600080fd5b8201836020820111156101d257600080fd5b803590602001918460018302840111600160201b831117156101f357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561024557600080fd5b82018360208201111561025757600080fd5b803590602001918460018302840111600160201b8311171561027857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092956001600160a01b03853516956020860135151595919450925060608101915060400135600160201b8111156102e157600080fd5b8201836020820111156102f357600080fd5b803590602001918460018302840111600160201b8311171561031457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506103b7945050505050565b600080610364868686866104a2565b604080513381526001600160a01b03831660208201528151929350851515927fb6b2cec9ff30111eabeaad8f637790de461dd611488da31616332f3428775943929181900390910190a295945050505050565b6000806103c6878787876104a2565b90508315157f8de554ce094a33b8f53e383e478db2962c6bfe43f8bea9677f41cb4f298bed1d33838660405180846001600160a01b03166001600160a01b03168152602001836001600160a01b03166001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561045c578181015183820152602001610444565b50505050905090810190601f1680156104895780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a25095945050505050565b6000808585856040516104b490610679565b6001600160a01b0382166040820152606080825284519082015283518190602080830191608084019188019080838360005b838110156104fe5781810151838201526020016104e6565b50505050905090810190601f16801561052b5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b8381101561055e578181015183820152602001610546565b50505050905090810190601f16801561058b5780820380516001836020036101000a031916815260200191505b5095505050505050604051809103906000f0801580156105af573d6000803e3d6000fd5b509050821561061057806001600160a01b031663715018a66040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156105f357600080fd5b505af1158015610607573d6000803e3d6000fd5b50505050610670565b6040805163f2fde38b60e01b815233600482015290516001600160a01b0383169163f2fde38b91602480830192600092919082900301818387803b15801561065757600080fd5b505af115801561066b573d6000803e3d6000fd5b505050505b95945050505050565b61239780620006888339019056fe60806040523480156200001157600080fd5b506040516200239738038062002397833981810160405260608110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b5050602090910151600380546001600160a01b0319163317908190556040519294509092506001600160a01b0316906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a382516200013790600490602086019062000451565b5081516200014d90600590602085019062000451565b506001600160a01b038116620001c457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f42656e65666963696172792063616e2774206265207a65726f00000000000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0383169081179091556040805160008152602081019290925280517f8a0149b2f3ddf2c9ee85738165131d82babbb938f749321d59f75750afa7f4e69281900390910190a1604080516001808252818301909252733d9819210a31b4961b30ef54be2aed79b9c9cd3b91606091906020808301908038833901905050905073f5dce57282a584d2746faf1593d3121fcac444dc816000815181106200027a57fe5b6001600160a01b039283166020918202929092018101919091526040517fc29982380000000000000000000000000000000000000000000000000000000081526004810182815284516024830152845160609487169363c2998238938793928392604490920191858101910280838360005b8381101562000306578181015183820152602001620002ec565b5050505090500192505050600060405180830381600087803b1580156200032c57600080fd5b505af115801562000341573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156200036b57600080fd5b8101908080516401000000008111156200038457600080fd5b820160208101848111156200039857600080fd5b8151856020820283011164010000000082111715620003b657600080fd5b5050929190505050905080600081518110620003ce57fe5b60200260200101516000146200044557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4661696c656420746f20656e7465722063444149206d61726b65740000000000604482015290519081900360640190fd5b505050505050620004f6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200049457805160ff1916838001178555620004c4565b82800160010185558215620004c4579182015b82811115620004c4578251825591602001919060010190620004a7565b50620004d2929150620004d6565b5090565b620004f391905b80821115620004d25760008155600101620004dd565b90565b611e9180620005066000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d15780639dc29fac1161008a578063dd62ed3e11610064578063dd62ed3e14610597578063df3061ed146105d2578063f2fde38b146105e7578063fbaa8b851461061a57610181565b80639dc29fac146104ec578063a457c2d714610525578063a9059cbb1461055e57610181565b806370a082311461044e578063715018a61461048157806378c691ad146104985780638da5cb5b146104ad5780638f32d59b146104c257806395d89b41146104d757610181565b80632a4c0a1a1161013e578063395093511161011857806339509351146103b257806340c10f19146103eb578063591ab5b41461042457806367ff13871461043957610181565b80632a4c0a1a1461035d578063313ce5671461037257806338af3eed1461039d57610181565b80630531b2ad146101b857806306fdde03146101e9578063095ea7b31461027357806318160ddd146102c05780631c31f710146102e757806323b872dd1461031a575b60405162461bcd60e51b8152600401808060200182810382526028815260200180611d396028913960400191505060405180910390fd5b3480156101c457600080fd5b506101cd61062f565b604080516001600160a01b039092168252519081900360200190f35b3480156101f557600080fd5b506101fe610647565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610238578181015183820152602001610220565b50505050905090810190601f1680156102655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027f57600080fd5b506102ac6004803603604081101561029657600080fd5b506001600160a01b0381351690602001356106dd565b604080519115158252519081900360200190f35b3480156102cc57600080fd5b506102d56106f4565b60408051918252519081900360200190f35b3480156102f357600080fd5b506102ac6004803603602081101561030a57600080fd5b50356001600160a01b03166106fa565b34801561032657600080fd5b506102ac6004803603606081101561033d57600080fd5b506001600160a01b0381358116916020810135909116906040013561081d565b34801561036957600080fd5b506101cd610874565b34801561037e57600080fd5b5061038761088c565b6040805160ff9092168252519081900360200190f35b3480156103a957600080fd5b506101cd610891565b3480156103be57600080fd5b506102ac600480360360408110156103d557600080fd5b506001600160a01b0381351690602001356108a0565b3480156103f757600080fd5b506102ac6004803603604081101561040e57600080fd5b506001600160a01b0381351690602001356108dc565b34801561043057600080fd5b506102d5610c7c565b34801561044557600080fd5b506102ac610dc7565b34801561045a57600080fd5b506102d56004803603602081101561047157600080fd5b50356001600160a01b0316610f81565b34801561048d57600080fd5b50610496610f9c565b005b3480156104a457600080fd5b506102ac61103f565b3480156104b957600080fd5b506101cd611239565b3480156104ce57600080fd5b506102ac611248565b3480156104e357600080fd5b506101fe611259565b3480156104f857600080fd5b506102ac6004803603604081101561050f57600080fd5b506001600160a01b0381351690602001356112ba565b34801561053157600080fd5b506102ac6004803603604081101561054857600080fd5b506001600160a01b0381351690602001356114bc565b34801561056a57600080fd5b506102ac6004803603604081101561058157600080fd5b506001600160a01b0381351690602001356114f8565b3480156105a357600080fd5b506102d5600480360360408110156105ba57600080fd5b506001600160a01b0381358116916020013516611505565b3480156105de57600080fd5b506102d5611530565b3480156105f357600080fd5b506104966004803603602081101561060a57600080fd5b50356001600160a01b0316611637565b34801561062657600080fd5b506101cd61169c565b73f5dce57282a584d2746faf1593d3121fcac444dc81565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b60006106ea3384846116b4565b5060015b92915050565b60025490565b6000610704611248565b610755576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0382166107b0576040805162461bcd60e51b815260206004820152601960248201527f42656e65666963696172792063616e2774206265207a65726f00000000000000604482015290519081900360640190fd5b600654604080516001600160a01b039283168152918416602083015280517f8a0149b2f3ddf2c9ee85738165131d82babbb938f749321d59f75750afa7f4e69281900390910190a150600680546001600160a01b0383166001600160a01b03199091161790556001919050565b600061082a8484846117a0565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461086a918691610865908663ffffffff6118e216565b6116b4565b5060019392505050565b7389d24a6b4ccb1b6faa2625fe562bdd9a2326035981565b601290565b6006546001600160a01b031681565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ea918590610865908663ffffffff61193f16565b604080516323b872dd60e01b81523360048201523060248201526044810183905290516000917389d24a6b4ccb1b6faa2625fe562bdd9a232603599182916323b872dd91606480830192602092919082900301818887803b15801561094057600080fd5b505af1158015610954573d6000803e3d6000fd5b505050506040513d602081101561096a57600080fd5b50516109a75760405162461bcd60e51b8152600401808060200182810382526026815260200180611e376026913960400191505060405180910390fd5b6040805163095ea7b360e01b815273f5dce57282a584d2746faf1593d3121fcac444dc60048201819052600060248301819052925190926001600160a01b0385169263095ea7b39260448083019360209383900390910190829087803b158015610a1057600080fd5b505af1158015610a24573d6000803e3d6000fd5b505050506040513d6020811015610a3a57600080fd5b5051610a8d576040805162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f20636c6561722044414920616c6c6f77616e6365000000604482015290519081900360640190fd5b6040805163095ea7b360e01b815273f5dce57282a584d2746faf1593d3121fcac444dc60048201526024810186905290516001600160a01b0384169163095ea7b39160448083019260209291908290030181600087803b158015610af057600080fd5b505af1158015610b04573d6000803e3d6000fd5b505050506040513d6020811015610b1a57600080fd5b5051610b6d576040805162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f207365742044414920616c6c6f77616e63650000000000604482015290519081900360640190fd5b806001600160a01b031663a0712d68856040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b158015610bb357600080fd5b505af1158015610bc7573d6000803e3d6000fd5b505050506040513d6020811015610bdd57600080fd5b505115610c27576040805162461bcd60e51b81526020600482015260136024820152724661696c656420746f206d696e74206344414960681b604482015290519081900360640190fd5b610c3185856119a0565b6040805185815290516001600160a01b0387169133917fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89181900360200190a3506001949350505050565b600073f5dce57282a584d2746faf1593d3121fcac444dc610dc1610c9e6106f4565b610db5670de0b6b3a7640000610da9856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015610d0357600080fd5b505afa158015610d17573d6000803e3d6000fd5b505050506040513d6020811015610d2d57600080fd5b50516040805163bd6d894d60e01b815290516001600160a01b0389169163bd6d894d9160048083019260209291908290030181600087803b158015610d7157600080fd5b505af1158015610d85573d6000803e3d6000fd5b505050506040513d6020811015610d9b57600080fd5b50519063ffffffff611a9016565b9063ffffffff611ae916565b9063ffffffff6118e216565b91505090565b60008073f5dce57282a584d2746faf1593d3121fcac444dc90506000610e6d826001600160a01b031663bd6d894d6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610e2157600080fd5b505af1158015610e35573d6000803e3d6000fd5b505050506040513d6020811015610e4b57600080fd5b5051610da9670de0b6b3a7640000610e61610c7c565b9063ffffffff611a9016565b6006546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b158015610ec657600080fd5b505af1158015610eda573d6000803e3d6000fd5b505050506040513d6020811015610ef057600080fd5b5051610f2d5760405162461bcd60e51b8152600401808060200182810382526026815260200180611da76026913960400191505060405180910390fd5b600654604080516001600160a01b03909216825260208201839052805160009233927fdf66df5e9f17232bfc5e28091ddd933cd438b233c6142dad65e97638dc4237c792918290030190a360019250505090565b6001600160a01b031660009081526020819052604090205490565b610fa4611248565b610ff5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60008061104a610c7c565b6040805163852a12e360e01b815260048101839052905191925073f5dce57282a584d2746faf1593d3121fcac444dc91829163852a12e39160248083019260209291908290030181600087803b1580156110a357600080fd5b505af11580156110b7573d6000803e3d6000fd5b505050506040513d60208110156110cd57600080fd5b505115611114576040805162461bcd60e51b815260206004820152601060248201526f4661696c656420746f2072656465656d60801b604482015290519081900360640190fd5b6006546040805163a9059cbb60e01b81526001600160a01b03909216600483015260248201849052517389d24a6b4ccb1b6faa2625fe562bdd9a2326035991829163a9059cbb916044808201926020929091908290030181600087803b15801561117d57600080fd5b505af1158015611191573d6000803e3d6000fd5b505050506040513d60208110156111a757600080fd5b50516111e45760405162461bcd60e51b8152600401808060200182810382526025815260200180611d616025913960400191505060405180910390fd5b600654604080516001600160a01b03909216825260208201859052805160019233927fdf66df5e9f17232bfc5e28091ddd933cd438b233c6142dad65e97638dc4237c792918290030190a36001935050505090565b6003546001600160a01b031690565b6003546001600160a01b0316331490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106d35780601f106106a8576101008083540402835291602001916106d3565b60006112c63383611b53565b6040805163852a12e360e01b815260048101849052905173f5dce57282a584d2746faf1593d3121fcac444dc91829163852a12e3916024808201926020929091908290030181600087803b15801561131d57600080fd5b505af1158015611331573d6000803e3d6000fd5b505050506040513d602081101561134757600080fd5b50511561138e576040805162461bcd60e51b815260206004820152601060248201526f4661696c656420746f2072656465656d60801b604482015290519081900360640190fd5b6040805163a9059cbb60e01b81526001600160a01b03861660048201526024810185905290517389d24a6b4ccb1b6faa2625fe562bdd9a2326035991829163a9059cbb916044808201926020929091908290030181600087803b1580156113f457600080fd5b505af1158015611408573d6000803e3d6000fd5b505050506040513d602081101561141e57600080fd5b5051611471576040805162461bcd60e51b815260206004820181905260248201527f4661696c656420746f207472616e736665722044414920746f20746172676574604482015290519081900360640190fd5b6040805185815290516001600160a01b0387169133917fbac40739b0d4ca32fa2d82fc91630465ba3eddd1598da6fca393b26fb63b94539181900360200190a3506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ea918590610865908663ffffffff6118e216565b60006106ea3384846117a0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600073f5dce57282a584d2746faf1593d3121fcac444dc610dc16115526106f4565b610db5670de0b6b3a7640000610da9856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156115b757600080fd5b505afa1580156115cb573d6000803e3d6000fd5b505050506040513d60208110156115e157600080fd5b50516040805163182df0f560e01b815290516001600160a01b0389169163182df0f5916004808301926020929190829003018186803b15801561162357600080fd5b505afa158015610d85573d6000803e3d6000fd5b61163f611248565b611690576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61169981611c2c565b50565b733d9819210a31b4961b30ef54be2aed79b9c9cd3b81565b6001600160a01b0383166116f95760405162461bcd60e51b8152600401808060200182810382526024815260200180611e136024913960400191505060405180910390fd5b6001600160a01b03821661173e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611d176022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117e55760405162461bcd60e51b8152600401808060200182810382526025815260200180611dee6025913960400191505060405180910390fd5b6001600160a01b03821661182a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611cce6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054611853908263ffffffff6118e216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611888908263ffffffff61193f16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611939576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015611999576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166119fb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611a0e908263ffffffff61193f16565b6002556001600160a01b038216600090815260208190526040902054611a3a908263ffffffff61193f16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082611a9f575060006106ee565b82820282848281611aac57fe5b04146119995760405162461bcd60e51b8152600401808060200182810382526021815260200180611d866021913960400191505060405180910390fd5b6000808211611b3f576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481611b4a57fe5b04949350505050565b6001600160a01b038216611b985760405162461bcd60e51b8152600401808060200182810382526021815260200180611dcd6021913960400191505060405180910390fd5b600254611bab908263ffffffff6118e216565b6002556001600160a01b038216600090815260208190526040902054611bd7908263ffffffff6118e216565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6001600160a01b038116611c715760405162461bcd60e51b8152600401808060200182810382526026815260200180611cf16026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373436f6e747261637420646f65736e277420737570706f727420726563656976696e672045746865724661696c656420746f207472616e736665722044414920746f2062656e6566696369617279536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774661696c656420746f207472616e73666572206344414920746f2062656e656669636961727945524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734661696c656420746f207472616e73666572204441492066726f6d206d73672e73656e646572a265627a7a72305820d79276a4a42be55b50491eef42a0a55b1cb1ba6618b707850a8c3d18d5da7e9964736f6c634300050a0032a265627a7a7230582054e735fe8314ee5329c01accf69b392f428f0a28a999142b46dcf78a72885b6a64736f6c634300050a0032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100365760003560e01c80635bbbe8411461003b578063680d447714610190575b600080fd5b6101746004803603608081101561005157600080fd5b810190602081018135600160201b81111561006b57600080fd5b82018360208201111561007d57600080fd5b803590602001918460018302840111600160201b8311171561009e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156100f057600080fd5b82018360208201111561010257600080fd5b803590602001918460018302840111600160201b8311171561012357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550506001600160a01b0383351693505050602001351515610355565b604080516001600160a01b039092168252519081900360200190f35b610174600480360360a08110156101a657600080fd5b810190602081018135600160201b8111156101c057600080fd5b8201836020820111156101d257600080fd5b803590602001918460018302840111600160201b831117156101f357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561024557600080fd5b82018360208201111561025757600080fd5b803590602001918460018302840111600160201b8311171561027857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092956001600160a01b03853516956020860135151595919450925060608101915060400135600160201b8111156102e157600080fd5b8201836020820111156102f357600080fd5b803590602001918460018302840111600160201b8311171561031457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506103b7945050505050565b600080610364868686866104a2565b604080513381526001600160a01b03831660208201528151929350851515927fb6b2cec9ff30111eabeaad8f637790de461dd611488da31616332f3428775943929181900390910190a295945050505050565b6000806103c6878787876104a2565b90508315157f8de554ce094a33b8f53e383e478db2962c6bfe43f8bea9677f41cb4f298bed1d33838660405180846001600160a01b03166001600160a01b03168152602001836001600160a01b03166001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561045c578181015183820152602001610444565b50505050905090810190601f1680156104895780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a25095945050505050565b6000808585856040516104b490610679565b6001600160a01b0382166040820152606080825284519082015283518190602080830191608084019188019080838360005b838110156104fe5781810151838201526020016104e6565b50505050905090810190601f16801561052b5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b8381101561055e578181015183820152602001610546565b50505050905090810190601f16801561058b5780820380516001836020036101000a031916815260200191505b5095505050505050604051809103906000f0801580156105af573d6000803e3d6000fd5b509050821561061057806001600160a01b031663715018a66040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156105f357600080fd5b505af1158015610607573d6000803e3d6000fd5b50505050610670565b6040805163f2fde38b60e01b815233600482015290516001600160a01b0383169163f2fde38b91602480830192600092919082900301818387803b15801561065757600080fd5b505af115801561066b573d6000803e3d6000fd5b505050505b95945050505050565b61239780620006888339019056fe60806040523480156200001157600080fd5b506040516200239738038062002397833981810160405260608110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b5050602090910151600380546001600160a01b0319163317908190556040519294509092506001600160a01b0316906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a382516200013790600490602086019062000451565b5081516200014d90600590602085019062000451565b506001600160a01b038116620001c457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f42656e65666963696172792063616e2774206265207a65726f00000000000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0383169081179091556040805160008152602081019290925280517f8a0149b2f3ddf2c9ee85738165131d82babbb938f749321d59f75750afa7f4e69281900390910190a1604080516001808252818301909252733d9819210a31b4961b30ef54be2aed79b9c9cd3b91606091906020808301908038833901905050905073f5dce57282a584d2746faf1593d3121fcac444dc816000815181106200027a57fe5b6001600160a01b039283166020918202929092018101919091526040517fc29982380000000000000000000000000000000000000000000000000000000081526004810182815284516024830152845160609487169363c2998238938793928392604490920191858101910280838360005b8381101562000306578181015183820152602001620002ec565b5050505090500192505050600060405180830381600087803b1580156200032c57600080fd5b505af115801562000341573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156200036b57600080fd5b8101908080516401000000008111156200038457600080fd5b820160208101848111156200039857600080fd5b8151856020820283011164010000000082111715620003b657600080fd5b5050929190505050905080600081518110620003ce57fe5b60200260200101516000146200044557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4661696c656420746f20656e7465722063444149206d61726b65740000000000604482015290519081900360640190fd5b505050505050620004f6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200049457805160ff1916838001178555620004c4565b82800160010185558215620004c4579182015b82811115620004c4578251825591602001919060010190620004a7565b50620004d2929150620004d6565b5090565b620004f391905b80821115620004d25760008155600101620004dd565b90565b611e9180620005066000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d15780639dc29fac1161008a578063dd62ed3e11610064578063dd62ed3e14610597578063df3061ed146105d2578063f2fde38b146105e7578063fbaa8b851461061a57610181565b80639dc29fac146104ec578063a457c2d714610525578063a9059cbb1461055e57610181565b806370a082311461044e578063715018a61461048157806378c691ad146104985780638da5cb5b146104ad5780638f32d59b146104c257806395d89b41146104d757610181565b80632a4c0a1a1161013e578063395093511161011857806339509351146103b257806340c10f19146103eb578063591ab5b41461042457806367ff13871461043957610181565b80632a4c0a1a1461035d578063313ce5671461037257806338af3eed1461039d57610181565b80630531b2ad146101b857806306fdde03146101e9578063095ea7b31461027357806318160ddd146102c05780631c31f710146102e757806323b872dd1461031a575b60405162461bcd60e51b8152600401808060200182810382526028815260200180611d396028913960400191505060405180910390fd5b3480156101c457600080fd5b506101cd61062f565b604080516001600160a01b039092168252519081900360200190f35b3480156101f557600080fd5b506101fe610647565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610238578181015183820152602001610220565b50505050905090810190601f1680156102655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027f57600080fd5b506102ac6004803603604081101561029657600080fd5b506001600160a01b0381351690602001356106dd565b604080519115158252519081900360200190f35b3480156102cc57600080fd5b506102d56106f4565b60408051918252519081900360200190f35b3480156102f357600080fd5b506102ac6004803603602081101561030a57600080fd5b50356001600160a01b03166106fa565b34801561032657600080fd5b506102ac6004803603606081101561033d57600080fd5b506001600160a01b0381358116916020810135909116906040013561081d565b34801561036957600080fd5b506101cd610874565b34801561037e57600080fd5b5061038761088c565b6040805160ff9092168252519081900360200190f35b3480156103a957600080fd5b506101cd610891565b3480156103be57600080fd5b506102ac600480360360408110156103d557600080fd5b506001600160a01b0381351690602001356108a0565b3480156103f757600080fd5b506102ac6004803603604081101561040e57600080fd5b506001600160a01b0381351690602001356108dc565b34801561043057600080fd5b506102d5610c7c565b34801561044557600080fd5b506102ac610dc7565b34801561045a57600080fd5b506102d56004803603602081101561047157600080fd5b50356001600160a01b0316610f81565b34801561048d57600080fd5b50610496610f9c565b005b3480156104a457600080fd5b506102ac61103f565b3480156104b957600080fd5b506101cd611239565b3480156104ce57600080fd5b506102ac611248565b3480156104e357600080fd5b506101fe611259565b3480156104f857600080fd5b506102ac6004803603604081101561050f57600080fd5b506001600160a01b0381351690602001356112ba565b34801561053157600080fd5b506102ac6004803603604081101561054857600080fd5b506001600160a01b0381351690602001356114bc565b34801561056a57600080fd5b506102ac6004803603604081101561058157600080fd5b506001600160a01b0381351690602001356114f8565b3480156105a357600080fd5b506102d5600480360360408110156105ba57600080fd5b506001600160a01b0381358116916020013516611505565b3480156105de57600080fd5b506102d5611530565b3480156105f357600080fd5b506104966004803603602081101561060a57600080fd5b50356001600160a01b0316611637565b34801561062657600080fd5b506101cd61169c565b73f5dce57282a584d2746faf1593d3121fcac444dc81565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b60006106ea3384846116b4565b5060015b92915050565b60025490565b6000610704611248565b610755576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0382166107b0576040805162461bcd60e51b815260206004820152601960248201527f42656e65666963696172792063616e2774206265207a65726f00000000000000604482015290519081900360640190fd5b600654604080516001600160a01b039283168152918416602083015280517f8a0149b2f3ddf2c9ee85738165131d82babbb938f749321d59f75750afa7f4e69281900390910190a150600680546001600160a01b0383166001600160a01b03199091161790556001919050565b600061082a8484846117a0565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461086a918691610865908663ffffffff6118e216565b6116b4565b5060019392505050565b7389d24a6b4ccb1b6faa2625fe562bdd9a2326035981565b601290565b6006546001600160a01b031681565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ea918590610865908663ffffffff61193f16565b604080516323b872dd60e01b81523360048201523060248201526044810183905290516000917389d24a6b4ccb1b6faa2625fe562bdd9a232603599182916323b872dd91606480830192602092919082900301818887803b15801561094057600080fd5b505af1158015610954573d6000803e3d6000fd5b505050506040513d602081101561096a57600080fd5b50516109a75760405162461bcd60e51b8152600401808060200182810382526026815260200180611e376026913960400191505060405180910390fd5b6040805163095ea7b360e01b815273f5dce57282a584d2746faf1593d3121fcac444dc60048201819052600060248301819052925190926001600160a01b0385169263095ea7b39260448083019360209383900390910190829087803b158015610a1057600080fd5b505af1158015610a24573d6000803e3d6000fd5b505050506040513d6020811015610a3a57600080fd5b5051610a8d576040805162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f20636c6561722044414920616c6c6f77616e6365000000604482015290519081900360640190fd5b6040805163095ea7b360e01b815273f5dce57282a584d2746faf1593d3121fcac444dc60048201526024810186905290516001600160a01b0384169163095ea7b39160448083019260209291908290030181600087803b158015610af057600080fd5b505af1158015610b04573d6000803e3d6000fd5b505050506040513d6020811015610b1a57600080fd5b5051610b6d576040805162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f207365742044414920616c6c6f77616e63650000000000604482015290519081900360640190fd5b806001600160a01b031663a0712d68856040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b158015610bb357600080fd5b505af1158015610bc7573d6000803e3d6000fd5b505050506040513d6020811015610bdd57600080fd5b505115610c27576040805162461bcd60e51b81526020600482015260136024820152724661696c656420746f206d696e74206344414960681b604482015290519081900360640190fd5b610c3185856119a0565b6040805185815290516001600160a01b0387169133917fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89181900360200190a3506001949350505050565b600073f5dce57282a584d2746faf1593d3121fcac444dc610dc1610c9e6106f4565b610db5670de0b6b3a7640000610da9856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015610d0357600080fd5b505afa158015610d17573d6000803e3d6000fd5b505050506040513d6020811015610d2d57600080fd5b50516040805163bd6d894d60e01b815290516001600160a01b0389169163bd6d894d9160048083019260209291908290030181600087803b158015610d7157600080fd5b505af1158015610d85573d6000803e3d6000fd5b505050506040513d6020811015610d9b57600080fd5b50519063ffffffff611a9016565b9063ffffffff611ae916565b9063ffffffff6118e216565b91505090565b60008073f5dce57282a584d2746faf1593d3121fcac444dc90506000610e6d826001600160a01b031663bd6d894d6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610e2157600080fd5b505af1158015610e35573d6000803e3d6000fd5b505050506040513d6020811015610e4b57600080fd5b5051610da9670de0b6b3a7640000610e61610c7c565b9063ffffffff611a9016565b6006546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b158015610ec657600080fd5b505af1158015610eda573d6000803e3d6000fd5b505050506040513d6020811015610ef057600080fd5b5051610f2d5760405162461bcd60e51b8152600401808060200182810382526026815260200180611da76026913960400191505060405180910390fd5b600654604080516001600160a01b03909216825260208201839052805160009233927fdf66df5e9f17232bfc5e28091ddd933cd438b233c6142dad65e97638dc4237c792918290030190a360019250505090565b6001600160a01b031660009081526020819052604090205490565b610fa4611248565b610ff5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60008061104a610c7c565b6040805163852a12e360e01b815260048101839052905191925073f5dce57282a584d2746faf1593d3121fcac444dc91829163852a12e39160248083019260209291908290030181600087803b1580156110a357600080fd5b505af11580156110b7573d6000803e3d6000fd5b505050506040513d60208110156110cd57600080fd5b505115611114576040805162461bcd60e51b815260206004820152601060248201526f4661696c656420746f2072656465656d60801b604482015290519081900360640190fd5b6006546040805163a9059cbb60e01b81526001600160a01b03909216600483015260248201849052517389d24a6b4ccb1b6faa2625fe562bdd9a2326035991829163a9059cbb916044808201926020929091908290030181600087803b15801561117d57600080fd5b505af1158015611191573d6000803e3d6000fd5b505050506040513d60208110156111a757600080fd5b50516111e45760405162461bcd60e51b8152600401808060200182810382526025815260200180611d616025913960400191505060405180910390fd5b600654604080516001600160a01b03909216825260208201859052805160019233927fdf66df5e9f17232bfc5e28091ddd933cd438b233c6142dad65e97638dc4237c792918290030190a36001935050505090565b6003546001600160a01b031690565b6003546001600160a01b0316331490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106d35780601f106106a8576101008083540402835291602001916106d3565b60006112c63383611b53565b6040805163852a12e360e01b815260048101849052905173f5dce57282a584d2746faf1593d3121fcac444dc91829163852a12e3916024808201926020929091908290030181600087803b15801561131d57600080fd5b505af1158015611331573d6000803e3d6000fd5b505050506040513d602081101561134757600080fd5b50511561138e576040805162461bcd60e51b815260206004820152601060248201526f4661696c656420746f2072656465656d60801b604482015290519081900360640190fd5b6040805163a9059cbb60e01b81526001600160a01b03861660048201526024810185905290517389d24a6b4ccb1b6faa2625fe562bdd9a2326035991829163a9059cbb916044808201926020929091908290030181600087803b1580156113f457600080fd5b505af1158015611408573d6000803e3d6000fd5b505050506040513d602081101561141e57600080fd5b5051611471576040805162461bcd60e51b815260206004820181905260248201527f4661696c656420746f207472616e736665722044414920746f20746172676574604482015290519081900360640190fd5b6040805185815290516001600160a01b0387169133917fbac40739b0d4ca32fa2d82fc91630465ba3eddd1598da6fca393b26fb63b94539181900360200190a3506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ea918590610865908663ffffffff6118e216565b60006106ea3384846117a0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600073f5dce57282a584d2746faf1593d3121fcac444dc610dc16115526106f4565b610db5670de0b6b3a7640000610da9856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156115b757600080fd5b505afa1580156115cb573d6000803e3d6000fd5b505050506040513d60208110156115e157600080fd5b50516040805163182df0f560e01b815290516001600160a01b0389169163182df0f5916004808301926020929190829003018186803b15801561162357600080fd5b505afa158015610d85573d6000803e3d6000fd5b61163f611248565b611690576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61169981611c2c565b50565b733d9819210a31b4961b30ef54be2aed79b9c9cd3b81565b6001600160a01b0383166116f95760405162461bcd60e51b8152600401808060200182810382526024815260200180611e136024913960400191505060405180910390fd5b6001600160a01b03821661173e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611d176022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117e55760405162461bcd60e51b8152600401808060200182810382526025815260200180611dee6025913960400191505060405180910390fd5b6001600160a01b03821661182a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611cce6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054611853908263ffffffff6118e216565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611888908263ffffffff61193f16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611939576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015611999576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166119fb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611a0e908263ffffffff61193f16565b6002556001600160a01b038216600090815260208190526040902054611a3a908263ffffffff61193f16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082611a9f575060006106ee565b82820282848281611aac57fe5b04146119995760405162461bcd60e51b8152600401808060200182810382526021815260200180611d866021913960400191505060405180910390fd5b6000808211611b3f576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481611b4a57fe5b04949350505050565b6001600160a01b038216611b985760405162461bcd60e51b8152600401808060200182810382526021815260200180611dcd6021913960400191505060405180910390fd5b600254611bab908263ffffffff6118e216565b6002556001600160a01b038216600090815260208190526040902054611bd7908263ffffffff6118e216565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6001600160a01b038116611c715760405162461bcd60e51b8152600401808060200182810382526026815260200180611cf16026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373436f6e747261637420646f65736e277420737570706f727420726563656976696e672045746865724661696c656420746f207472616e736665722044414920746f2062656e6566696369617279536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774661696c656420746f207472616e73666572206344414920746f2062656e656669636961727945524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734661696c656420746f207472616e73666572204441492066726f6d206d73672e73656e646572a265627a7a72305820d79276a4a42be55b50491eef42a0a55b1cb1ba6618b707850a8c3d18d5da7e9964736f6c634300050a0032a265627a7a7230582054e735fe8314ee5329c01accf69b392f428f0a28a999142b46dcf78a72885b6a64736f6c634300050a0032
Swarm Source
bzzr://54e735fe8314ee5329c01accf69b392f428f0a28a999142b46dcf78a72885b6a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.