Overview
POL Balance
0 POL
POL Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 40,992 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Destroy Vault | 65538525 | 2 days ago | IN | 0 POL | 0.00218489 | ||||
Deposit Collater... | 65443676 | 5 days ago | IN | 0 POL | 0.0018732 | ||||
Approve | 65443602 | 5 days ago | IN | 0 POL | 0.00145491 | ||||
Withdraw Collate... | 65443175 | 5 days ago | IN | 0 POL | 0.00201062 | ||||
Approve | 65006802 | 16 days ago | IN | 0 POL | 0.0014846 | ||||
Destroy Vault | 64966803 | 17 days ago | IN | 0 POL | 0.00216509 | ||||
Withdraw Collate... | 64915332 | 18 days ago | IN | 0 POL | 0.00578699 | ||||
Withdraw Collate... | 64404929 | 31 days ago | IN | 0 POL | 0.00187995 | ||||
Withdraw Collate... | 64138840 | 37 days ago | IN | 0 POL | 0.00435816 | ||||
Approve | 64132998 | 38 days ago | IN | 0 POL | 0.00176245 | ||||
Withdraw Collate... | 64132885 | 38 days ago | IN | 0 POL | 0.00234436 | ||||
Withdraw Collate... | 63267319 | 59 days ago | IN | 0 POL | 0.00220343 | ||||
Destroy Vault | 62726911 | 72 days ago | IN | 0 POL | 0.00216516 | ||||
Approve | 62480192 | 79 days ago | IN | 0 POL | 0.00145491 | ||||
Approve | 61583631 | 101 days ago | IN | 0 POL | 0.00145491 | ||||
Approve | 61522675 | 102 days ago | IN | 0 POL | 0.00153995 | ||||
Withdraw Collate... | 60701477 | 123 days ago | IN | 0 POL | 0.00201024 | ||||
Set Approval For... | 60563329 | 126 days ago | IN | 0 POL | 0.00153789 | ||||
Destroy Vault | 60429240 | 130 days ago | IN | 0 POL | 0.00216516 | ||||
Withdraw Collate... | 60429077 | 130 days ago | IN | 0 POL | 0.00201024 | ||||
Approve | 60320092 | 133 days ago | IN | 0 POL | 0.00145491 | ||||
Deposit Collater... | 60320072 | 133 days ago | IN | 0 POL | 0.00205378 | ||||
Withdraw Collate... | 60096101 | 138 days ago | IN | 0 POL | 0.00286898 | ||||
Approve | 59810535 | 146 days ago | IN | 0 POL | 0.00145491 | ||||
Deposit Collater... | 59810521 | 146 days ago | IN | 0 POL | 0.00201684 |
Loading...
Loading
Contract Name:
erc20QiStablecoin
Compiler Version
v0.5.16+commit.9c3226ce
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.5.16; import "@openzeppelin/contracts/ownership/Ownable.sol"; import "./erc20Stablecoin.sol"; contract erc20QiStablecoin is erc20Stablecoin, Ownable { constructor( address ethPriceSourceAddress, uint256 minimumCollateralPercentage, string memory name, string memory symbol, address _mai, address _collateral, address meta, string memory baseURI ) erc20Stablecoin( ethPriceSourceAddress, minimumCollateralPercentage, name, symbol, _mai, _collateral, meta, baseURI ) public { treasury=0; } function setGainRatio(uint256 _gainRatio) external onlyOwner() { gainRatio=_gainRatio; } function setDebtRatio(uint256 _debtRatio) external onlyOwner() { debtRatio=_debtRatio; } // management function function transferToken(address to, address token, uint256 amountToken) external onlyOwner() { ERC20(token).transfer(to, amountToken); } function changeEthPriceSource(address ethPriceSourceAddress) external onlyOwner() { ethPriceSource = shareOracle(ethPriceSourceAddress); } function setTokenPeg(uint256 _tokenPeg) external onlyOwner() { tokenPeg = _tokenPeg; } function setStabilityPool(address _pool) external onlyOwner() { stabilityPool = _pool; } function setMinCollateralRatio(uint256 minimumCollateralPercentage) external onlyOwner() { _minimumCollateralPercentage = minimumCollateralPercentage; } function setClosingFee(uint256 amount) external onlyOwner() { closingFee = amount; } function setOpeningFee(uint256 amount) external onlyOwner() { openingFee = amount; } function setTreasury(uint256 _treasury) external onlyOwner() { require(_exists(_treasury), "Vault does not exist"); treasury = _treasury; } function transferToken(uint256 amountToken) public onlyOwner() { // Transfer reserve tokens back to main MAI contract mai.transfer(address(mai), amountToken); } function setBaseURI(string memory baseURI) public onlyOwner() { _setBaseURI(baseURI); } }
pragma solidity ^0.5.0; import "../GSN/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @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 _msgSender() == _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; } }
pragma solidity 0.5.16; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "../oracles/shareOracle.sol"; import "../MyVaultV3.sol"; contract erc20Stablecoin is ReentrancyGuard, VaultNFTv3 { shareOracle public ethPriceSource; using SafeMath for uint256; using SafeERC20 for IERC20; uint256 public _minimumCollateralPercentage; uint256 public vaultCount; uint256 public closingFee; uint256 public openingFee; uint256 public treasury; uint256 public tokenPeg; mapping(uint256 => uint256) public vaultCollateral; mapping(uint256 => uint256) public vaultDebt; uint256 public debtRatio; uint256 public gainRatio; address public stabilityPool; IERC20 public collateral; IERC20 public mai; uint256 public collateralDecimals; event CreateVault(uint256 vaultID, address creator); event DestroyVault(uint256 vaultID); event TransferVault(uint256 vaultID, address from, address to); event DepositCollateral(uint256 vaultID, uint256 amount); event WithdrawCollateral(uint256 vaultID, uint256 amount); event BorrowToken(uint256 vaultID, uint256 amount); event PayBackToken(uint256 vaultID, uint256 amount, uint256 closingFee); event LiquidateVault(uint256 vaultID, address owner, address buyer, uint256 debtRepaid, uint256 collateralLiquidated, uint256 closingFee); mapping(address => uint256) public maticDebt; constructor( address ethPriceSourceAddress, uint256 minimumCollateralPercentage, string memory name, string memory symbol, address _mai, address _collateral, address meta, string memory baseURI ) VaultNFTv3(name, symbol, meta, baseURI) public { assert(ethPriceSourceAddress != address(0)); assert(minimumCollateralPercentage != 0); // | decimals start here closingFee=50; // 0.5% openingFee=0; // 0.0% ethPriceSource = shareOracle(ethPriceSourceAddress); stabilityPool = address(0); tokenPeg = 100000000; // $1 debtRatio = 2; // 1/2, pay back 50% gainRatio = 1100;// /10 so 1.1 _minimumCollateralPercentage = minimumCollateralPercentage; collateral = IERC20(_collateral); mai = IERC20(_mai); collateralDecimals = 8; } modifier onlyVaultOwner(uint256 vaultID) { require(_exists(vaultID), "Vault does not exist"); require(ownerOf(vaultID) == msg.sender, "Vault is not owned by you"); _; } function getDebtCeiling() public view returns (uint256){ return mai.balanceOf(address(this)); } function exists(uint256 vaultID) external view returns (bool){ return _exists(vaultID); } function getClosingFee() external view returns (uint256){ return closingFee; } function getOpeningFee() external view returns (uint256){ return openingFee; } function getTokenPriceSource() public view returns (uint256){ return tokenPeg; } function getEthPriceSource() public view returns (uint256){ (,int256 price,,,) = ethPriceSource.latestRoundData(); return uint256(price); } function calculateCollateralProperties(uint256 collateral, uint256 debt) private view returns (uint256, uint256) { assert(getEthPriceSource() != 0); assert(getTokenPriceSource() != 0); uint256 collateralValue = collateral.mul(getEthPriceSource() ); assert(collateralValue >= collateral); uint256 debtValue = debt.mul(getTokenPriceSource()); assert(debtValue >= debt); uint256 collateralValueTimes100 = collateralValue.mul(100); assert(collateralValueTimes100 > collateralValue); return (collateralValueTimes100, debtValue); } function isValidCollateral(uint256 collateral, uint256 debt) private view returns (bool) { (uint256 collateralValueTimes100, uint256 debtValue) = calculateCollateralProperties(collateral, debt); uint256 collateralPercentage = collateralValueTimes100.div(debtValue); return collateralPercentage >= _minimumCollateralPercentage; } function createVault() external returns (uint256) { uint256 id = vaultCount; vaultCount = vaultCount.add(1); assert(vaultCount >= id); _mint(msg.sender,id); emit CreateVault(id, msg.sender); return id; } function destroyVault(uint256 vaultID) external onlyVaultOwner(vaultID) nonReentrant { require(vaultDebt[vaultID] == 0, "Vault has outstanding debt"); if(vaultCollateral[vaultID]!=0) { // withdraw leftover collateral collateral.safeTransfer(ownerOf(vaultID), vaultCollateral[vaultID]); } _burn(vaultID); delete vaultCollateral[vaultID]; delete vaultDebt[vaultID]; emit DestroyVault(vaultID); } function depositCollateral(uint256 vaultID, uint256 amount) external { collateral.safeTransferFrom(msg.sender, address(this), amount); uint256 newCollateral = vaultCollateral[vaultID].add(amount); assert(newCollateral >= vaultCollateral[vaultID]); vaultCollateral[vaultID] = newCollateral; emit DepositCollateral(vaultID, amount); } function withdrawCollateral(uint256 vaultID, uint256 amount) external onlyVaultOwner(vaultID) nonReentrant { require(vaultCollateral[vaultID] >= amount, "Vault does not have enough collateral"); uint256 newCollateral = vaultCollateral[vaultID].sub(amount); if(vaultDebt[vaultID] != 0) { require(isValidCollateral(newCollateral, vaultDebt[vaultID]), "Withdrawal would put vault below minimum collateral percentage"); } vaultCollateral[vaultID] = newCollateral; collateral.safeTransfer(msg.sender, amount); emit WithdrawCollateral(vaultID, amount); } function borrowToken(uint256 vaultID, uint256 amount) external onlyVaultOwner(vaultID) { require(amount > 0, "Must borrow non-zero amount"); require(amount <= getDebtCeiling(), "borrowToken: Cannot mint over available supply."); uint256 newDebt = vaultDebt[vaultID].add(amount); assert(newDebt > vaultDebt[vaultID]); require(isValidCollateral(vaultCollateral[vaultID], newDebt), "Borrow would put vault below minimum collateral percentage"); vaultDebt[vaultID] = newDebt; // mai mai.safeTransfer(msg.sender, amount); emit BorrowToken(vaultID, amount); } function payBackToken(uint256 vaultID, uint256 amount) external { require(mai.balanceOf(msg.sender) >= amount, "Token balance too low"); require(vaultDebt[vaultID] >= amount, "Vault debt less than amount to pay back"); uint256 _closingFee = (amount.mul(closingFee).mul(getTokenPriceSource())).div(getEthPriceSource().mul(10000)); //mai mai.safeTransferFrom(msg.sender, address(this), amount); vaultDebt[vaultID] = vaultDebt[vaultID].sub(amount); vaultCollateral[vaultID]=vaultCollateral[vaultID].sub(_closingFee); vaultCollateral[treasury]=vaultCollateral[treasury].add(_closingFee); emit PayBackToken(vaultID, amount, _closingFee); } function getPaid() public nonReentrant { require(maticDebt[msg.sender]!=0, "Don't have anything for you."); uint256 amount = maticDebt[msg.sender]; maticDebt[msg.sender]=0; collateral.safeTransfer(msg.sender, amount); } function checkCost(uint256 vaultID) public view returns (uint256) { if(vaultCollateral[vaultID] == 0 || vaultDebt[vaultID]==0 || !checkLiquidation(vaultID) ){ return 0; } (uint256 collateralValueTimes100, uint256 debtValue) = calculateCollateralProperties(vaultCollateral[vaultID], vaultDebt[vaultID]); if(debtValue==0){ return 0; } uint256 collateralPercentage = collateralValueTimes100.div(debtValue); debtValue = debtValue.div(10 ** collateralDecimals); uint256 halfDebt = debtValue.div(debtRatio); //debtRatio (2) return(halfDebt); } function checkExtract(uint256 vaultID) public view returns (uint256) { if(vaultCollateral[vaultID] == 0|| !checkLiquidation(vaultID) ) { return 0; } (uint256 collateralValueTimes100, uint256 debtValue) = calculateCollateralProperties(vaultCollateral[vaultID], vaultDebt[vaultID]); uint256 halfDebt = debtValue.div(debtRatio); //debtRatio (2) if(halfDebt==0){ return 0; } return halfDebt.mul(gainRatio).div(1000).div(getEthPriceSource()); } function checkCollateralPercentage(uint256 vaultID) public view returns(uint256){ require(_exists(vaultID), "Vault does not exist"); if(vaultCollateral[vaultID] == 0 || vaultDebt[vaultID]==0){ return 0; } (uint256 collateralValueTimes100, uint256 debtValue) = calculateCollateralProperties(vaultCollateral[vaultID], vaultDebt[vaultID]); return collateralValueTimes100.div(debtValue); } function checkLiquidation(uint256 vaultID) public view returns (bool) { require(_exists(vaultID), "Vault does not exist"); if(vaultCollateral[vaultID] == 0 || vaultDebt[vaultID]==0){ return false; } (uint256 collateralValueTimes100, uint256 debtValue) = calculateCollateralProperties(vaultCollateral[vaultID], vaultDebt[vaultID]); uint256 collateralPercentage = collateralValueTimes100.div(debtValue); if(collateralPercentage < _minimumCollateralPercentage){ return true; } else{ return false; } } function liquidateVault(uint256 vaultID) external { require(_exists(vaultID), "Vault does not exist"); require(stabilityPool==address(0) || msg.sender == stabilityPool, "liquidation is disabled for public"); (uint256 collateralValueTimes100, uint256 debtValue) = calculateCollateralProperties(vaultCollateral[vaultID], vaultDebt[vaultID]); uint256 collateralPercentage = collateralValueTimes100.div(debtValue); require(collateralPercentage < _minimumCollateralPercentage, "Vault is not below minimum collateral percentage"); debtValue = debtValue.div(10 ** collateralDecimals); uint256 halfDebt = debtValue.div(debtRatio); //debtRatio (2) require(mai.balanceOf(msg.sender) >= halfDebt, "Token balance too low to pay off outstanding debt"); //mai mai.safeTransferFrom(msg.sender, address(this), halfDebt); uint256 maticExtract = checkExtract(vaultID); vaultDebt[vaultID] = vaultDebt[vaultID].sub(halfDebt); // we paid back half of its debt. uint256 _closingFee = (halfDebt.mul(closingFee).mul(getTokenPriceSource()) ).div(getEthPriceSource().mul(10000)); vaultCollateral[vaultID]=vaultCollateral[vaultID].sub(_closingFee); vaultCollateral[treasury]=vaultCollateral[treasury].add(_closingFee); // deduct the amount from the vault's collateral vaultCollateral[vaultID] = vaultCollateral[vaultID].sub(maticExtract); // let liquidator take the collateral maticDebt[msg.sender] = maticDebt[msg.sender].add(maticExtract); emit LiquidateVault(vaultID, ownerOf(vaultID), msg.sender, halfDebt, maticExtract, _closingFee); } }
pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.5.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
pragma solidity ^0.5.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * 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 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 Context, 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(_msgSender(), 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 amount) public 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 returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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(_msgSender(), spender, _allowances[_msgSender()][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(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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, "ERC20: transfer amount exceeds balance"); _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 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 { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @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 amount) internal { 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 Destroys `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, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } }
pragma solidity ^0.5.0; import "./IERC20.sol"; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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 view returns (uint8) { return _decimals; } }
pragma solidity ^0.5.0; /** * @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]. * * _Since v2.5.0:_ this module is now much more gas efficient, given net gas * metering changes introduced in the Istanbul hardfork. */ contract ReentrancyGuard { bool private _notEntered; constructor () internal { // Storing an initial 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 percetange 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. _notEntered = true; } /** * @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 make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } }
pragma solidity ^0.5.0; /** * @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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); 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-contracts/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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// contracts/shareOracle.sol // SPDX-License-Identifier: UTD /// TRIPLE CHECK THE VERSION WE END UP USING. MIGHT NEED TO UPGRADE ALL OUR CONTRACTS pragma solidity 0.5.16; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "../PriceSource.sol"; contract shareOracle { using SafeMath for uint256; // this should just be vieweing a chainlink oracle's price // then it would check the balances of that contract in the token that its checking. // it should return the price per token based on the camToken's balance PriceSource public priceSource; ERC20 public underlying; ERC20 public shares; uint256 public fallbackPrice; event FallbackPrice( uint80 roundId, int256 price, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); // price Source gives underlying price per token // shareToken should hold underlying and we need to calculate a PPS constructor(address _priceSource, address _underlying, address _shares) public { priceSource = PriceSource(_priceSource); underlying = ERC20(_underlying); shares = ERC20(_shares); } // to integrate we just need to inherit that same interface the other page uses. function latestRoundData() public view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ){ // we should passthrough all the data from the chainlink call. This would allow for transparency over the information sent. // Then we can filter as needed but this could be a cool standard we use for share-based tokens (like the compounding tokens) // check how much underlying does the share contract have. // underlying.balanceOf(address(shares)) // then we check how many shares do we have outstanding // shares.totalSupply() // now we divide the total value of underlying held in the contract by the number of tokens ( uint80 roundId, int256 price, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ) = priceSource.latestRoundData(); uint256 _price; if(price>0){ _price=uint256(price); } else { _price=fallbackPrice; } uint256 newPrice = ((underlying.balanceOf(address(shares))).mul(_price).div(shares.totalSupply())); return(roundId, int256(newPrice), startedAt, updatedAt, answeredInRound); } function getUnderlying() public view returns (uint256, uint256) { return (underlying.balanceOf(address(shares)), shares.totalSupply()); } function updateFallbackPrice() public { ( uint80 roundId, int256 price, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ) = priceSource.latestRoundData(); if (price > 0) { fallbackPrice = uint256(price); emit FallbackPrice(roundId,price,startedAt,updatedAt,answeredInRound); } } }
// contracts/MyVaultNFT.sol // SPDX-License-Identifier: MIT pragma solidity 0.5.16; import "@openzeppelin/contracts/token/ERC721/ERC721Full.sol"; import "./interfaces/IVaultMetaProvider.sol"; import "./interfaces/IVaultMetaRegistry.sol"; contract VaultNFTv3 is ERC721Full { address public _meta; string public base; constructor(string memory name, string memory symbol, address meta, string memory baseURI) public ERC721Full(name, symbol) { _meta = meta; base=baseURI; } function tokenURI(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId)); IVaultMetaRegistry registry = IVaultMetaRegistry(_meta); IVaultMetaProvider provider = IVaultMetaProvider(registry.getMetaProvider(address(this))); return bytes(base).length > 0 ? string(abi.encodePacked(base, provider.getTokenURI(address(this), tokenId))) : ""; } }
pragma solidity ^0.5.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. * * 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); }
pragma solidity ^0.5.5; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } }
pragma solidity ^0.5.0; interface PriceSource { function latestRoundData() external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound); function decimals() external view returns (uint8); // source: https://polygonscan.com/address/0xab594600376ec9fd91f8e885dadf0ce036862de0#code }
pragma solidity ^0.5.0; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./ERC721Metadata.sol"; /** * @title Full ERC721 Token * @dev This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology. * * See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata { constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) { // solhint-disable-previous-line no-empty-blocks } }
pragma solidity 0.5.16; interface IVaultMetaProvider { function getTokenURI(address vault_address, uint256 tokenId) external view returns (string memory); function getBaseURI() external view returns (string memory); }
pragma solidity 0.5.16; interface IVaultMetaRegistry { function getMetaProvider(address vault_address) external view returns (address); }
pragma solidity ^0.5.0; import "../../GSN/Context.sol"; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; import "../../drafts/Counters.sol"; import "../../introspection/ERC165.sol"; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from token ID to owner mapping (uint256 => address) private _tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to number of owned token mapping (address => Counters.Counter) private _ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; constructor () public { // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); } /** * @dev Gets the balance of the specified address. * @param owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address owner) public view returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _ownedTokensCount[owner].current(); } /** * @dev Gets the owner of the specified token ID. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view returns (address) { address owner = _tokenOwner[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ function approve(address to, uint256 tokenId) public { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf. * @param to operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address to, bool approved) public { require(to != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][to] = approved; emit ApprovalForAll(_msgSender(), to, approved); } /** * @dev Tells whether an operator is approved by a given owner. * @param owner owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner */ function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Transfers the ownership of a given token ID to another address. * Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * Requires the msg.sender to be the owner, approved, or operator. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function transferFrom(address from, address to, uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transferFrom(from, to, tokenId); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the _msgSender() to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransferFrom(from, to, tokenId, _data); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal { _transferFrom(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether the specified token exists. * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 tokenId) internal view returns (bool) { address owner = _tokenOwner[tokenId]; return owner != address(0); } /** * @dev Returns whether the given spender can transfer a given token ID. * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted * @param _data bytes data to send along with a safe transfer check */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _tokenOwner[tokenId] = to; _ownedTokensCount[to].increment(); emit Transfer(address(0), to, tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own"); _clearApproval(tokenId); _ownedTokensCount[owner].decrement(); _tokenOwner[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * @param tokenId uint256 ID of the token being burned */ function _burn(uint256 tokenId) internal { _burn(ownerOf(tokenId), tokenId); } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _clearApproval(tokenId); _ownedTokensCount[from].decrement(); _ownedTokensCount[to].increment(); _tokenOwner[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * This is an internal detail of the `ERC721` contract and its use is deprecated. * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) internal returns (bool) { if (!to.isContract()) { return true; } // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data )); if (!success) { if (returndata.length > 0) { // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert("ERC721: transfer to non ERC721Receiver implementer"); } } else { bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } } /** * @dev Private function to clear current approval of a given token ID. * @param tokenId uint256 ID of the token to be transferred */ function _clearApproval(uint256 tokenId) private { if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } }
pragma solidity ^0.5.0; import "../../GSN/Context.sol"; import "./IERC721Enumerable.sol"; import "./ERC721.sol"; import "../../introspection/ERC165.sol"; /** * @title ERC-721 Non-Fungible Token with optional enumeration extension logic * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Enumerable is Context, ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Constructor function. */ constructor () public { // register the supported interface to conform to ERC721Enumerable via ERC165 _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev Gets the token ID at a given index of the tokens list of the requested owner. * @param owner address owning the tokens list to be accessed * @param index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the tokens list owned by the requested address */ function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return _allTokens.length; } /** * @dev Gets the token ID at a given index of all the tokens in this contract * Reverts if the index is greater or equal to the total number of tokens. * @param index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens list */ function tokenByIndex(uint256 index) public view returns (uint256) { require(index < totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to transferFrom, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { super._transferFrom(from, to, tokenId); _removeTokenFromOwnerEnumeration(from, tokenId); _addTokenToOwnerEnumeration(to, tokenId); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to address the beneficiary that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { super._mint(to, tokenId); _addTokenToOwnerEnumeration(to, tokenId); _addTokenToAllTokensEnumeration(tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {ERC721-_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); _removeTokenFromOwnerEnumeration(owner, tokenId); // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund _ownedTokensIndex[tokenId] = 0; _removeTokenFromAllTokensEnumeration(tokenId); } /** * @dev Gets the list of token IDs of the requested owner. * @param owner address owning the tokens * @return uint256[] List of token IDs owned by the requested address */ function _tokensOfOwner(address owner) internal view returns (uint256[] storage) { return _ownedTokens[owner]; } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { _ownedTokensIndex[tokenId] = _ownedTokens[to].length; _ownedTokens[to].push(tokenId); } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _ownedTokens[from].length.sub(1); uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array _ownedTokens[from].length--; // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by // lastTokenId, or just over the end of the array if the token was the last one). } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length.sub(1); uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array _allTokens.length--; _allTokensIndex[tokenId] = 0; } }
pragma solidity ^0.5.0; import "../../GSN/Context.sol"; import "./ERC721.sol"; import "./IERC721Metadata.sol"; import "../../introspection/ERC165.sol"; contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata { // Token name string private _name; // Token symbol string private _symbol; // Base URI string private _baseURI; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /** * @dev Constructor function */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721_METADATA); } /** * @dev Gets the token name. * @return string representing the token name */ function name() external view returns (string memory) { return _name; } /** * @dev Gets the token symbol. * @return string representing the token symbol */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the URI for a given token ID. May return an empty string. * * If the token's URI is non-empty and a base URI was set (via * {_setBaseURI}), it will be added to the token ID's URI as a prefix. * * Reverts if the token ID does not exist. */ function tokenURI(uint256 tokenId) external view returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // Even if there is a base URI, it is only appended to non-empty token-specific URIs if (bytes(_tokenURI).length == 0) { return ""; } else { // abi.encodePacked is being used to concatenate strings return string(abi.encodePacked(_baseURI, _tokenURI)); } } /** * @dev Internal function to set the token URI for a given token. * * Reverts if the token ID does not exist. * * TIP: if all token IDs share a prefix (e.g. if your URIs look like * `http://api.myproject.com/token/<id>`), use {_setBaseURI} to store * it and save gas. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}. * * _Available since v2.5.0._ */ function _setBaseURI(string memory baseURI) internal { _baseURI = baseURI; } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a preffix in {tokenURI} to each token's URI, when * they are non-empty. * * _Available since v2.5.0._ */ function baseURI() external view returns (string memory) { return _baseURI; } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use _burn(uint256) instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned by the msg.sender */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
pragma solidity ^0.5.0; import "../../introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ contract IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in `owner`'s account. */ function balanceOf(address owner) public view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) public view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) public; function approve(address to, uint256 tokenId) public; function getApproved(uint256 tokenId) public view returns (address operator); function setApprovalForAll(address operator, bool _approved) public; function isApprovedForAll(address owner, address operator) public view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public; }
pragma solidity ^0.5.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4); }
pragma solidity ^0.5.0; import "../math/SafeMath.sol"; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } }
pragma solidity ^0.5.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } }
pragma solidity ^0.5.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
pragma solidity ^0.5.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Enumerable is IERC721 { function totalSupply() public view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId); function tokenByIndex(uint256 index) public view returns (uint256); }
pragma solidity ^0.5.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"ethPriceSourceAddress","type":"address"},{"internalType":"uint256","name":"minimumCollateralPercentage","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_mai","type":"address"},{"internalType":"address","name":"_collateral","type":"address"},{"internalType":"address","name":"meta","type":"address"},{"internalType":"string","name":"baseURI","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"vaultID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BorrowToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"vaultID","type":"uint256"},{"indexed":false,"internalType":"address","name":"creator","type":"address"}],"name":"CreateVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"vaultID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositCollateral","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"vaultID","type":"uint256"}],"name":"DestroyVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"vaultID","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"debtRepaid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collateralLiquidated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"closingFee","type":"uint256"}],"name":"LiquidateVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"vaultID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"closingFee","type":"uint256"}],"name":"PayBackToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"vaultID","type":"uint256"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"TransferVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"vaultID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawCollateral","type":"event"},{"constant":true,"inputs":[],"name":"_meta","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_minimumCollateralPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"base","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"borrowToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"ethPriceSourceAddress","type":"address"}],"name":"changeEthPriceSource","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"}],"name":"checkCollateralPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"}],"name":"checkExtract","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"}],"name":"checkLiquidation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"collateral","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"collateralDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"createVault","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"debtRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositCollateral","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"}],"name":"destroyVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ethPriceSource","outputs":[{"internalType":"contract shareOracle","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gainRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getClosingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getDebtCeiling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getEthPriceSource","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOpeningFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getPaid","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getTokenPriceSource","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"}],"name":"liquidateVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mai","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maticDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"openingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"payBackToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setClosingFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_debtRatio","type":"uint256"}],"name":"setDebtRatio","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_gainRatio","type":"uint256"}],"name":"setGainRatio","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"minimumCollateralPercentage","type":"uint256"}],"name":"setMinCollateralRatio","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setOpeningFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"setStabilityPool","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_tokenPeg","type":"uint256"}],"name":"setTokenPeg","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_treasury","type":"uint256"}],"name":"setTreasury","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stabilityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenPeg","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amountToken","type":"uint256"}],"name":"transferToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountToken","type":"uint256"}],"name":"transferToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"treasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vaultCollateral","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vaultCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vaultDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"vaultID","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawCollateral","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162004c3f38038062004c3f83398181016040526101008110156200003857600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200006457600080fd5b9083019060208201858111156200007a57600080fd5b82516401000000008111828201881017156200009557600080fd5b82525081516020918201929091019080838360005b83811015620000c4578181015183820152602001620000aa565b50505050905090810190601f168015620000f25780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011657600080fd5b9083019060208201858111156200012c57600080fd5b82516401000000008111828201881017156200014757600080fd5b82525081516020918201929091019080838360005b83811015620001765781810151838201526020016200015c565b50505050905090810190601f168015620001a45780820380516001836020036101000a031916815260200191505b50604081815260208301519083015160608401516080909401805192969195919284640100000000821115620001d957600080fd5b908301906020820185811115620001ef57600080fd5b82516401000000008111828201881017156200020a57600080fd5b82525081516020918201929091019080838360005b83811015620002395781810151838201526020016200021f565b50505050905090810190601f168015620002675780820380516001836020036101000a031916815260200191505b5060405250506000805460ff191660011790555087878787878787878585838383838181620002a66301ffc9a760e01b6001600160e01b036200045516565b620002c16380ac58cd60e01b6001600160e01b036200045516565b620002dc63780e9d6360e01b6001600160e01b036200045516565b8151620002f190600a906020850190620004e2565b5080516200030790600b906020840190620004e2565b5062000323635b5e139f60e01b6001600160e01b036200045516565b5050600e80546001600160a01b0319166001600160a01b038616179055505080516200035790600f906020840190620004e2565b50505050506001600160a01b0388166200036d57fe5b866200037557fe5b5050603260135560006014819055601080546001600160a01b03199081166001600160a01b03998a1617909155601b8054821690556305f5e100601655600260195561044c601a55601196909655601c8054871692881692909217909155601d8054909516919095161790925550506008601e55620003f3620004dd565b602080546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350506000601555506200058495505050505050565b6001600160e01b03198082161415620004b5576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200052557805160ff191683800117855562000555565b8280016001018555821562000555579182015b828111156200055557825182559160200191906001019062000538565b506200056392915062000567565b5090565b620004df91905b808211156200056357600081556001016200056e565b6146ab80620005946000396000f3fe608060405234801561001057600080fd5b50600436106104575760003560e01c806385af3c1611610250578063b88d4fde11610150578063df987846116100c8578063ec9c6c3011610097578063f2fde38b1161007c578063f2fde38b14610c18578063f5537ede14610c3e578063ffc73da714610c7457610457565b8063ec9c6c3014610bed578063ece1373214610bf557610457565b8063df98784614610b7d578063e5f4dc9214610b9a578063e985e9c514610ba2578063eb6a887d14610bd057610457565b8063cea55f571161011f578063d310f49b11610104578063d310f49b14610b3b578063d4a9b2c514610b58578063d8dfeb4514610b7557610457565b8063cea55f5714610b2b578063cf41d6f814610b3357610457565b8063b88d4fde14610a38578063c87b56dd14610afe578063cd44db1b14610b1b578063cdfedd6314610b2357610457565b806398c3f2db116101e3578063a5e98837116101b2578063ab806f1511610197578063ab806f15146109ed578063b165ff0b146109f5578063b86f6aef14610a1b57610457565b8063a5e98837146109dd578063a7c6a100146109e557610457565b806398c3f2db1461096457806398d721e01461096c5780639fc71b3114610992578063a22cb465146109af57610457565b80638f32d59b1161021f5780638f32d59b1461092f57806390cf0bba1461093757806394cd4ba71461095457806395d89b411461095c57610457565b806385af3c16146108ca57806385e290a3146108ed578063863759941461090a5780638da5cb5b1461092757610457565b806342f371c61161035b5780635d12928b116102ee57806370a08231116102bd578063715018a6116102a2578063715018a614610897578063728bbbb51461089f578063767a7b05146108a757610457565b806370a08231146108545780637139c9291461087a57610457565b80635d12928b1461081f57806361d027b3146108275780636352211e1461082f5780636c0360eb1461084c57610457565b80635001f3b51161032a5780635001f3b51461074c57806355f804b31461075457806356572ac0146107fa578063570b2b841461081757610457565b806342f371c614610702578063470ffb331461070a5780634f558e79146107125780634f6ccce71461072f57610457565b806311b4a832116103ee5780632f745c59116103bd57806338536275116103a257806338536275146106925780633db99177146106af57806342842e0e146106cc57610457565b80632f745c591461065e578063311f392a1461068a57610457565b806311b4a832146105e957806318160ddd146106185780631c883e7b1461062057806323b872dd1461062857610457565b8063079605321161042a5780630796053214610557578063081812fc1461057d57806308ec59271461059a578063095ea7b3146105bd57610457565b806301e49d0a1461045c57806301ffc9a71461047b578063048c661d146104b657806306fdde03146104da575b600080fd5b6104796004803603602081101561047257600080fd5b5035610c91565b005b6104a26004803603602081101561049157600080fd5b50356001600160e01b031916610cdd565b604080519115158252519081900360200190f35b6104be610d00565b604080516001600160a01b039092168252519081900360200190f35b6104e2610d0f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561051c578181015183820152602001610504565b50505050905090810190601f1680156105495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104796004803603602081101561056d57600080fd5b50356001600160a01b0316610da6565b6104be6004803603602081101561059357600080fd5b5035610e0f565b610479600480360360408110156105b057600080fd5b5080359060200135610e71565b610479600480360360408110156105d357600080fd5b506001600160a01b0381351690602001356110bf565b610606600480360360208110156105ff57600080fd5b50356111e7565b60408051918252519081900360200190f35b6106066112b8565b6106066112be565b6104796004803603606081101561063e57600080fd5b506001600160a01b038135811691602081013590911690604001356112c4565b6106066004803603604081101561067457600080fd5b506001600160a01b038135169060200135611320565b6106066113a0565b610479600480360360208110156106a857600080fd5b50356113a6565b610479600480360360208110156106c557600080fd5b50356113f2565b610479600480360360608110156106e257600080fd5b506001600160a01b0381358116916020810135909116906040013561143e565b6104be611459565b6104be611468565b6104a26004803603602081101561072857600080fd5b5035611477565b6106066004803603602081101561074557600080fd5b5035611482565b6104e26114e8565b6104796004803603602081101561076a57600080fd5b81019060208101813564010000000081111561078557600080fd5b82018360208201111561079757600080fd5b803590602001918460018302840111640100000000831117156107b957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611576945050505050565b6106066004803603602081101561081057600080fd5b50356115c9565b6104be611685565b610606611694565b610606611702565b6104be6004803603602081101561084557600080fd5b5035611708565b6104e261175c565b6106066004803603602081101561086a57600080fd5b50356001600160a01b03166117bd565b6104796004803603602081101561089057600080fd5b5035611825565b6104796118c2565b610606611953565b610479600480360360408110156108bd57600080fd5b5080359060200135611959565b610479600480360360408110156108e057600080fd5b5080359060200135611bc3565b6104796004803603602081101561090357600080fd5b5035611e06565b6104796004803603602081101561092057600080fd5b503561202f565b6104be61207b565b6104a261208a565b6104796004803603602081101561094d57600080fd5b50356120b0565b610606612476565b6104e26124f2565b610606612553565b6104796004803603602081101561098257600080fd5b50356001600160a01b03166125d9565b610479600480360360208110156109a857600080fd5b5035612642565b610479600480360360408110156109c557600080fd5b506001600160a01b0381351690602001351515612708565b61060661280d565b610606612813565b610606612819565b61060660048036036020811015610a0b57600080fd5b50356001600160a01b031661281f565b6104a260048036036020811015610a3157600080fd5b5035612831565b61047960048036036080811015610a4e57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135640100000000811115610a8957600080fd5b820183602082011115610a9b57600080fd5b80359060200191846001830284011164010000000083111715610abd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612918945050505050565b6104e260048036036020811015610b1457600080fd5b5035612976565b610606612c70565b610606612c76565b610606612c7c565b610479612c82565b61060660048036036020811015610b5157600080fd5b5035612d84565b61060660048036036020811015610b6e57600080fd5b5035612d96565b6104be612da8565b61060660048036036020811015610b9357600080fd5b5035612db7565b610606612e78565b6104a260048036036040811015610bb857600080fd5b506001600160a01b0381358116916020013516612e7e565b61047960048036036020811015610be657600080fd5b5035612eac565b610606612ef8565b61047960048036036040811015610c0b57600080fd5b5080359060200135612efe565b61047960048036036020811015610c2e57600080fd5b50356001600160a01b0316612fa8565b61047960048036036060811015610c5457600080fd5b506001600160a01b03813581169160208101359091169060400135612ff8565b61047960048036036020811015610c8a57600080fd5b50356130d0565b610c9961208a565b610cd8576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601655565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b601b546001600160a01b031681565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b505050505090505b90565b610dae61208a565b610ded576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e1a8261311c565b610e555760405162461bcd60e51b815260040180806020018281038252602c8152602001806144a9602c913960400191505060405180910390fd5b506000908152600360205260409020546001600160a01b031690565b81610e7b8161311c565b610ec3576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b33610ecd82611708565b6001600160a01b031614610f28576040805162461bcd60e51b815260206004820152601960248201527f5661756c74206973206e6f74206f776e656420627920796f7500000000000000604482015290519081900360640190fd5b60008211610f7d576040805162461bcd60e51b815260206004820152601b60248201527f4d75737420626f72726f77206e6f6e2d7a65726f20616d6f756e740000000000604482015290519081900360640190fd5b610f85612476565b821115610fc35760405162461bcd60e51b815260040180806020018281038252602f815260200180614338602f913960400191505060405180910390fd5b600083815260186020526040812054610fe2908463ffffffff61313916565b6000858152601860205260409020549091508111610ffc57fe5b600084815260176020526040902054611015908261319a565b6110505760405162461bcd60e51b815260040180806020018281038252603a81526020018061451e603a913960400191505060405180910390fd5b6000848152601860205260409020819055601d5461107e906001600160a01b0316338563ffffffff6131cf16565b604080518581526020810185905281517f3e08df88d8e28f37df9bf227d3142ac506a364403445661a60891a49ed6792ca929181900390910190a150505050565b60006110ca82611708565b9050806001600160a01b0316836001600160a01b0316141561111d5760405162461bcd60e51b81526004018080602001828103825260218152602001806145586021913960400191505060405180910390fd5b806001600160a01b031661112f613221565b6001600160a01b0316148061115057506111508161114b613221565b612e7e565b61118b5760405162461bcd60e51b81526004018080602001828103825260388152602001806143986038913960400191505060405180910390fd5b60008281526003602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600081815260176020526040812054158061120e5750600082815260186020526040902054155b8061121f575061121d82612831565b155b1561122c57506000610cfb565b6000828152601760209081526040808320546018909252822054829161125191613225565b91509150806000141561126957600092505050610cfb565b600061127b838363ffffffff6132ac16565b9050611295601e54600a0a836132ac90919063ffffffff16565b915060006112ae601954846132ac90919063ffffffff16565b9695505050505050565b60085490565b60135481565b6112d56112cf613221565b826132ee565b6113105760405162461bcd60e51b81526004018080602001828103825260318152602001806145a96031913960400191505060405180910390fd5b61131b83838361338a565b505050565b600061132b836117bd565b82106113685760405162461bcd60e51b815260040180806020018281038252602b815260200180614240602b913960400191505060405180910390fd5b6001600160a01b038316600090815260066020526040902080548390811061138c57fe5b906000526020600020015490505b92915050565b601a5481565b6113ae61208a565b6113ed576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601155565b6113fa61208a565b611439576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601355565b61131b83838360405180602001604052806000815250612918565b6010546001600160a01b031681565b600e546001600160a01b031681565b600061139a8261311c565b600061148c6112b8565b82106114c95760405162461bcd60e51b815260040180806020018281038252602c8152602001806145da602c913960400191505060405180910390fd5b600882815481106114d657fe5b90600052602060002001549050919050565b600f805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b505050505081565b61157e61208a565b6115bd576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b6115c6816133a9565b50565b60008181526017602052604081205415806115ea57506115e882612831565b155b156115f757506000610cfb565b6000828152601760209081526040808320546018909252822054829161161c91613225565b915091506000611637601954836132ac90919063ffffffff16565b90508061164a5760009350505050610cfb565b61167c611655612553565b6116706103e8611670601a54866133c090919063ffffffff16565b9063ffffffff6132ac16565b95945050505050565b601d546001600160a01b031681565b6012546000906116ab81600163ffffffff61313916565b60128190558111156116b957fe5b6116c33382613419565b6040805182815233602082015281517f8b6c1d05c678fa59695e26465a85918ce0fc63a88f74af53d1daef8f0a9c7804929181900390910190a1905090565b60155481565b6000818152600260205260408120546001600160a01b03168061139a5760405162461bcd60e51b81526004018080602001828103825260298152602001806144216029913960400191505060405180910390fd5b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b60006001600160a01b0382166118045760405162461bcd60e51b815260040180806020018281038252602a8152602001806143f7602a913960400191505060405180910390fd5b6001600160a01b038216600090815260046020526040902061139a90613436565b61182d61208a565b61186c576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b6118758161311c565b6118bd576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b601555565b6118ca61208a565b611909576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b6020546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3602080546001600160a01b0319169055565b60145481565b816119638161311c565b6119ab576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b336119b582611708565b6001600160a01b031614611a10576040805162461bcd60e51b815260206004820152601960248201527f5661756c74206973206e6f74206f776e656420627920796f7500000000000000604482015290519081900360640190fd5b60005460ff16611a67576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff1916815583815260176020526040902054821115611abc5760405162461bcd60e51b81526004018080602001828103825260258152602001806142e76025913960400191505060405180910390fd5b600083815260176020526040812054611adb908463ffffffff61343a16565b60008581526018602052604090205490915015611b4757600084815260186020526040902054611b0c90829061319a565b611b475760405162461bcd60e51b815260040180806020018281038252603e81526020018061444a603e913960400191505060405180910390fd5b6000848152601760205260409020819055601c54611b75906001600160a01b0316338563ffffffff6131cf16565b604080518581526020810185905281517f6c0ea3bea9dd66afa8f9d39d6eb93d833466190330813b42835efc650dca4cb9929181900390910190a150506000805460ff191660011790555050565b601d54604080516370a0823160e01b8152336004820152905183926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611c0d57600080fd5b505afa158015611c21573d6000803e3d6000fd5b505050506040513d6020811015611c3757600080fd5b50511015611c8c576040805162461bcd60e51b815260206004820152601560248201527f546f6b656e2062616c616e636520746f6f206c6f770000000000000000000000604482015290519081900360640190fd5b600082815260186020526040902054811115611cd95760405162461bcd60e51b81526004018080602001828103825260278152602001806143d06027913960400191505060405180910390fd5b6000611d17611cf8612710611cec612553565b9063ffffffff6133c016565b611670611d03612c70565b601354611cec90879063ffffffff6133c016565b601d54909150611d38906001600160a01b031633308563ffffffff61347c16565b600083815260186020526040902054611d57908363ffffffff61343a16565b600084815260186020908152604080832093909355601790522054611d82908263ffffffff61343a16565b6000848152601760205260408082209290925560155481522054611dac908263ffffffff61313916565b601554600090815260176020908152604091829020929092558051858152918201849052818101839052517f31f96762af4051f367185773cc2f55bfb112a6c114b3407ded1f321a9eb199ac9181900360600190a1505050565b80611e108161311c565b611e58576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b33611e6282611708565b6001600160a01b031614611ebd576040805162461bcd60e51b815260206004820152601960248201527f5661756c74206973206e6f74206f776e656420627920796f7500000000000000604482015290519081900360640190fd5b60005460ff16611f14576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff191681558281526018602052604090205415611f7d576040805162461bcd60e51b815260206004820152601a60248201527f5661756c7420686173206f75747374616e64696e672064656274000000000000604482015290519081900360640190fd5b60008281526017602052604090205415611fc557611fc5611f9d83611708565b600084815260176020526040902054601c546001600160a01b0316919063ffffffff6131cf16565b611fce826134ef565b60008281526017602090815260408083208390556018825280832092909255815184815291517f4fe08624ee65b341c38ab9693d216b909d4ddee1bc8d3fe0fea14026c361b4659281900390910190a150506000805460ff19166001179055565b61203761208a565b612076576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601455565b6020546001600160a01b031690565b6020546000906001600160a01b03166120a1613221565b6001600160a01b031614905090565b6120b98161311c565b612101576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b601b546001600160a01b031615806121235750601b546001600160a01b031633145b61215e5760405162461bcd60e51b81526004018080602001828103825260228152602001806146556022913960400191505060405180910390fd5b6000818152601760209081526040808320546018909252822054829161218391613225565b9092509050600061219a838363ffffffff6132ac16565b905060115481106121dc5760405162461bcd60e51b81526004018080602001828103825260308152602001806145796030913960400191505060405180910390fd5b601e546121f3908390600a0a63ffffffff6132ac16565b9150600061220c601954846132ac90919063ffffffff16565b601d54604080516370a0823160e01b8152336004820152905192935083926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561225c57600080fd5b505afa158015612270573d6000803e3d6000fd5b505050506040513d602081101561228657600080fd5b505110156122c55760405162461bcd60e51b81526004018080602001828103825260318152602001806143676031913960400191505060405180910390fd5b601d546122e3906001600160a01b031633308463ffffffff61347c16565b60006122ee866115c9565b600087815260186020526040902054909150612310908363ffffffff61343a16565b600087815260186020526040812091909155612352612333612710611cec612553565b61167061233e612c70565b601354611cec90889063ffffffff6133c016565b600088815260176020526040902054909150612374908263ffffffff61343a16565b600088815260176020526040808220929092556015548152205461239e908263ffffffff61313916565b6015546000908152601760205260408082209290925588815220546123c9908363ffffffff61343a16565b600088815260176020908152604080832093909355338252601f905220546123f7908363ffffffff61313916565b336000908152601f60205260409020557f4d151d3a98b83151d51917640c221f8c8e3c054422ea1b48dcbbd57e3f4210d58761243281611708565b604080519283526001600160a01b0390911660208301523382820152606082018690526080820185905260a08201849052519081900360c00190a150505050505050565b601d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156124c157600080fd5b505afa1580156124d5573d6000803e3d6000fd5b505050506040513d60208110156124eb57600080fd5b5051905090565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b600080601060009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b1580156125a457600080fd5b505afa1580156125b8573d6000803e3d6000fd5b505050506040513d60a08110156125ce57600080fd5b506020015191505090565b6125e161208a565b612620576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b61264a61208a565b612689576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601d546040805163a9059cbb60e01b81526001600160a01b0390921660048301819052602483018490529051909163a9059cbb9160448083019260209291908290030181600087803b1580156126de57600080fd5b505af11580156126f2573d6000803e3d6000fd5b505050506040513d602081101561131b57600080fd5b612710613221565b6001600160a01b0316826001600160a01b03161415612776576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060056000612783613221565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556127c7613221565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b60135490565b60125481565b60145490565b601f6020526000908152604090205481565b600061283c8261311c565b612884576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b60008281526017602052604090205415806128ab5750600082815260186020526040902054155b156128b857506000610cfb565b600082815260176020908152604080832054601890925282205482916128dd91613225565b909250905060006128f4838363ffffffff6132ac16565b905060115481101561290c5760019350505050610cfb565b60009350505050610cfb565b612929612923613221565b836132ee565b6129645760405162461bcd60e51b81526004018080602001828103825260318152602001806145a96031913960400191505060405180910390fd5b61297084848484613501565b50505050565b60606129818261311c565b61298a57600080fd5b600e54604080517fc823744200000000000000000000000000000000000000000000000000000000815230600482015290516001600160a01b0390921691600091839163c823744291602480820192602092909190829003018186803b1580156129f357600080fd5b505afa158015612a07573d6000803e3d6000fd5b505050506040513d6020811015612a1d57600080fd5b5051600f5490915060026000196101006001841615020190911604612a515760405180602001604052806000815250612c68565b604080517f0b63fd62000000000000000000000000000000000000000000000000000000008152306004820152602481018690529051600f916001600160a01b03841691630b63fd6291604480820192600092909190829003018186803b158015612abb57600080fd5b505afa158015612acf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612af857600080fd5b8101908080516040519392919084640100000000821115612b1857600080fd5b908301906020820185811115612b2d57600080fd5b8251640100000000811182820188101715612b4757600080fd5b82525081516020918201929091019080838360005b83811015612b74578181015183820152602001612b5c565b50505050905090810190601f168015612ba15780820380516001836020036101000a031916815260200191505b506040525050506040516020018083805460018160011615610100020316600290048015612c065780601f10612be4576101008083540402835291820191612c06565b820191906000526020600020905b815481529060010190602001808311612bf2575b5050825160208401908083835b60208310612c325780518252601f199092019160209182019101612c13565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b949350505050565b60165490565b60165481565b60195481565b60005460ff16612cd9576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff19168155338152601f6020526040902054612d41576040805162461bcd60e51b815260206004820152601c60248201527f446f6e2774206861766520616e797468696e6720666f7220796f752e00000000604482015290519081900360640190fd5b336000818152601f602052604081208054919055601c549091612d74916001600160a01b0316908363ffffffff6131cf16565b506000805460ff19166001179055565b60186020526000908152604090205481565b60176020526000908152604090205481565b601c546001600160a01b031681565b6000612dc28261311c565b612e0a576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b6000828152601760205260409020541580612e315750600082815260186020526040902054155b15612e3e57506000610cfb565b60008281526017602090815260408083205460189092528220548291612e6391613225565b9092509050612c68828263ffffffff6132ac16565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b612eb461208a565b612ef3576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601955565b601e5481565b601c54612f1c906001600160a01b031633308463ffffffff61347c16565b600082815260176020526040812054612f3b908363ffffffff61313916565b600084815260176020526040902054909150811015612f5657fe5b600083815260176020908152604091829020839055815185815290810184905281517f52c4e7127ec34e8fc95f09ce2d06b4f00acca12ccbcdfb246ef67ee6aefe068d929181900390910190a1505050565b612fb061208a565b612fef576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b6115c681613553565b61300061208a565b61303f576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b816001600160a01b031663a9059cbb84836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561309f57600080fd5b505af11580156130b3573d6000803e3d6000fd5b505050506040513d60208110156130c957600080fd5b5050505050565b6130d861208a565b613117576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601a55565b6000908152600260205260409020546001600160a01b0316151590565b600082820183811015613193576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008060006131a98585613225565b909250905060006131c0838363ffffffff6132ac16565b60115411159695505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261131b9084906135f4565b3390565b600080613230612553565b61323657fe5b61323e612c70565b61324457fe5b600061325e613251612553565b869063ffffffff6133c016565b90508481101561326a57fe5b6000613277613251612c70565b90508481101561328357fe5b600061329683606463ffffffff6133c016565b90508281116132a157fe5b969095509350505050565b600061319383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506137ac565b60006132f98261311c565b6133345760405162461bcd60e51b815260040180806020018281038252602c81526020018061430c602c913960400191505060405180910390fd5b600061333f83611708565b9050806001600160a01b0316846001600160a01b0316148061337a5750836001600160a01b031661336f84610e0f565b6001600160a01b0316145b80612c685750612c688185612e7e565b61339583838361384e565b61339f8382613992565b61131b8282613a80565b80516133bc90600c906020840190614143565b5050565b6000826133cf5750600061139a565b828202828482816133dc57fe5b04146131935760405162461bcd60e51b81526004018080602001828103825260218152602001806144886021913960400191505060405180910390fd5b6134238282613abe565b61342d8282613a80565b6133bc81613bef565b5490565b600061319383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613c33565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03167f23b872dd000000000000000000000000000000000000000000000000000000001790526129709085906135f4565b6115c66134fb82611708565b82613c8d565b61350c84848461338a565b61351884848484613cd5565b6129705760405162461bcd60e51b815260040180806020018281038252603281526020018061426b6032913960400191505060405180910390fd5b6001600160a01b0381166135985760405162461bcd60e51b815260040180806020018281038252602681526020018061429d6026913960400191505060405180910390fd5b6020546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3602080546001600160a01b0319166001600160a01b0392909216919091179055565b613606826001600160a01b0316613f10565b613657576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106136955780518252601f199092019160209182019101613676565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146136f7576040519150601f19603f3d011682016040523d82523d6000602084013e6136fc565b606091505b509150915081613753576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156129705780806020019051602081101561376f57600080fd5b50516129705760405162461bcd60e51b815260040180806020018281038252602a81526020018061462b602a913960400191505060405180910390fd5b600081836138385760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156137fd5781810151838201526020016137e5565b50505050905090810190601f16801561382a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161384457fe5b0495945050505050565b826001600160a01b031661386182611708565b6001600160a01b0316146138a65760405162461bcd60e51b81526004018080602001828103825260298152602001806144f56029913960400191505060405180910390fd5b6001600160a01b0382166138eb5760405162461bcd60e51b81526004018080602001828103825260248152602001806142c36024913960400191505060405180910390fd5b6138f481613f49565b6001600160a01b038316600090815260046020526040902061391590613f84565b6001600160a01b038216600090815260046020526040902061393690613f9b565b60008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600660205260408120546139bc90600163ffffffff61343a16565b600083815260076020526040902054909150808214613a57576001600160a01b03841660009081526006602052604081208054849081106139f957fe5b906000526020600020015490508060066000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110613a3757fe5b600091825260208083209091019290925591825260079052604090208190555b6001600160a01b03841660009081526006602052604090208054906130c99060001983016141c1565b6001600160a01b0390911660009081526006602081815260408084208054868652600784529185208290559282526001810183559183529091200155565b6001600160a01b038216613b19576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b613b228161311c565b15613b74576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260026020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260049091529020613bb390613f9b565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60008184841115613c855760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156137fd5781810151838201526020016137e5565b505050900390565b613c978282613fa4565b6000818152600d602052604090205460026000196101006001841615020190911604156133bc576000818152600d602052604081206133bc916141e5565b6000613ce9846001600160a01b0316613f10565b613cf557506001612c68565b600060606001600160a01b038616630a85bd0160e11b613d13613221565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613d8c578181015183820152602001613d74565b50505050905090810190601f168015613db95780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310613e215780518252601f199092019160209182019101613e02565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613e83576040519150601f19603f3d011682016040523d82523d6000602084013e613e88565b606091505b509150915081613ed957805115613ea25780518082602001fd5b60405162461bcd60e51b815260040180806020018281038252603281526020018061426b6032913960400191505060405180910390fd5b6000818060200190516020811015613ef057600080fd5b50516001600160e01b031916630a85bd0160e11b149350612c6892505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612c68575050151592915050565b6000818152600360205260409020546001600160a01b0316156115c657600090815260036020526040902080546001600160a01b0319169055565b8054613f9790600163ffffffff61343a16565b9055565b80546001019055565b613fae8282613fd0565b613fb88282613992565b6000818152600760205260408120556133bc816140a7565b816001600160a01b0316613fe382611708565b6001600160a01b0316146140285760405162461bcd60e51b81526004018080602001828103825260258152602001806146066025913960400191505060405180910390fd5b61403181613f49565b6001600160a01b038216600090815260046020526040902061405290613f84565b60008181526002602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6008546000906140be90600163ffffffff61343a16565b600083815260096020526040812054600880549394509092849081106140e057fe5b9060005260206000200154905080600883815481106140fb57fe5b6000918252602080832090910192909255828152600990915260409020829055600880549061412e9060001983016141c1565b50505060009182525060096020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061418457805160ff19168380011785556141b1565b828001600101855582156141b1579182015b828111156141b1578251825591602001919060010190614196565b506141bd929150614225565b5090565b81548183558181111561131b5760008381526020902061131b918101908301614225565b50805460018160011615610100020316600290046000825580601f1061420b57506115c6565b601f0160209004906000526020600020908101906115c691905b610da391905b808211156141bd576000815560010161422b56fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573735661756c7420646f6573206e6f74206861766520656e6f75676820636f6c6c61746572616c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e626f72726f77546f6b656e3a2043616e6e6f74206d696e74206f76657220617661696c61626c6520737570706c792e546f6b656e2062616c616e636520746f6f206c6f7720746f20706179206f6666206f75747374616e64696e6720646562744552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c5661756c742064656274206c657373207468616e20616d6f756e7420746f20706179206261636b4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e5769746864726177616c20776f756c6420707574207661756c742062656c6f77206d696e696d756d20636f6c6c61746572616c2070657263656e74616765536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e426f72726f7720776f756c6420707574207661756c742062656c6f77206d696e696d756d20636f6c6c61746572616c2070657263656e746167654552433732313a20617070726f76616c20746f2063757272656e74206f776e65725661756c74206973206e6f742062656c6f77206d696e696d756d20636f6c6c61746572616c2070657263656e746167654552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565646c69717569646174696f6e2069732064697361626c656420666f72207075626c6963a265627a7a72315820ce00cfe73834e81a967019cda11f11e2a23e6da4f1f41cebdb965fee672ab68464736f6c634300051000320000000000000000000000000fda41a1d4555b85021312b765c6d519b9c66f93000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f10000000000000000000000000470cd31c8fcc42671465880ba81d631f0b76c1d0000000000000000000000004920184f60221a75abf39bb0b4d06ac25d9b2bb20000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001163616d57455448204d4149205661756c74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000863616d57454d5654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001568747470733a2f2f697066732e696f2f697066732f0000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104575760003560e01c806385af3c1611610250578063b88d4fde11610150578063df987846116100c8578063ec9c6c3011610097578063f2fde38b1161007c578063f2fde38b14610c18578063f5537ede14610c3e578063ffc73da714610c7457610457565b8063ec9c6c3014610bed578063ece1373214610bf557610457565b8063df98784614610b7d578063e5f4dc9214610b9a578063e985e9c514610ba2578063eb6a887d14610bd057610457565b8063cea55f571161011f578063d310f49b11610104578063d310f49b14610b3b578063d4a9b2c514610b58578063d8dfeb4514610b7557610457565b8063cea55f5714610b2b578063cf41d6f814610b3357610457565b8063b88d4fde14610a38578063c87b56dd14610afe578063cd44db1b14610b1b578063cdfedd6314610b2357610457565b806398c3f2db116101e3578063a5e98837116101b2578063ab806f1511610197578063ab806f15146109ed578063b165ff0b146109f5578063b86f6aef14610a1b57610457565b8063a5e98837146109dd578063a7c6a100146109e557610457565b806398c3f2db1461096457806398d721e01461096c5780639fc71b3114610992578063a22cb465146109af57610457565b80638f32d59b1161021f5780638f32d59b1461092f57806390cf0bba1461093757806394cd4ba71461095457806395d89b411461095c57610457565b806385af3c16146108ca57806385e290a3146108ed578063863759941461090a5780638da5cb5b1461092757610457565b806342f371c61161035b5780635d12928b116102ee57806370a08231116102bd578063715018a6116102a2578063715018a614610897578063728bbbb51461089f578063767a7b05146108a757610457565b806370a08231146108545780637139c9291461087a57610457565b80635d12928b1461081f57806361d027b3146108275780636352211e1461082f5780636c0360eb1461084c57610457565b80635001f3b51161032a5780635001f3b51461074c57806355f804b31461075457806356572ac0146107fa578063570b2b841461081757610457565b806342f371c614610702578063470ffb331461070a5780634f558e79146107125780634f6ccce71461072f57610457565b806311b4a832116103ee5780632f745c59116103bd57806338536275116103a257806338536275146106925780633db99177146106af57806342842e0e146106cc57610457565b80632f745c591461065e578063311f392a1461068a57610457565b806311b4a832146105e957806318160ddd146106185780631c883e7b1461062057806323b872dd1461062857610457565b8063079605321161042a5780630796053214610557578063081812fc1461057d57806308ec59271461059a578063095ea7b3146105bd57610457565b806301e49d0a1461045c57806301ffc9a71461047b578063048c661d146104b657806306fdde03146104da575b600080fd5b6104796004803603602081101561047257600080fd5b5035610c91565b005b6104a26004803603602081101561049157600080fd5b50356001600160e01b031916610cdd565b604080519115158252519081900360200190f35b6104be610d00565b604080516001600160a01b039092168252519081900360200190f35b6104e2610d0f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561051c578181015183820152602001610504565b50505050905090810190601f1680156105495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104796004803603602081101561056d57600080fd5b50356001600160a01b0316610da6565b6104be6004803603602081101561059357600080fd5b5035610e0f565b610479600480360360408110156105b057600080fd5b5080359060200135610e71565b610479600480360360408110156105d357600080fd5b506001600160a01b0381351690602001356110bf565b610606600480360360208110156105ff57600080fd5b50356111e7565b60408051918252519081900360200190f35b6106066112b8565b6106066112be565b6104796004803603606081101561063e57600080fd5b506001600160a01b038135811691602081013590911690604001356112c4565b6106066004803603604081101561067457600080fd5b506001600160a01b038135169060200135611320565b6106066113a0565b610479600480360360208110156106a857600080fd5b50356113a6565b610479600480360360208110156106c557600080fd5b50356113f2565b610479600480360360608110156106e257600080fd5b506001600160a01b0381358116916020810135909116906040013561143e565b6104be611459565b6104be611468565b6104a26004803603602081101561072857600080fd5b5035611477565b6106066004803603602081101561074557600080fd5b5035611482565b6104e26114e8565b6104796004803603602081101561076a57600080fd5b81019060208101813564010000000081111561078557600080fd5b82018360208201111561079757600080fd5b803590602001918460018302840111640100000000831117156107b957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611576945050505050565b6106066004803603602081101561081057600080fd5b50356115c9565b6104be611685565b610606611694565b610606611702565b6104be6004803603602081101561084557600080fd5b5035611708565b6104e261175c565b6106066004803603602081101561086a57600080fd5b50356001600160a01b03166117bd565b6104796004803603602081101561089057600080fd5b5035611825565b6104796118c2565b610606611953565b610479600480360360408110156108bd57600080fd5b5080359060200135611959565b610479600480360360408110156108e057600080fd5b5080359060200135611bc3565b6104796004803603602081101561090357600080fd5b5035611e06565b6104796004803603602081101561092057600080fd5b503561202f565b6104be61207b565b6104a261208a565b6104796004803603602081101561094d57600080fd5b50356120b0565b610606612476565b6104e26124f2565b610606612553565b6104796004803603602081101561098257600080fd5b50356001600160a01b03166125d9565b610479600480360360208110156109a857600080fd5b5035612642565b610479600480360360408110156109c557600080fd5b506001600160a01b0381351690602001351515612708565b61060661280d565b610606612813565b610606612819565b61060660048036036020811015610a0b57600080fd5b50356001600160a01b031661281f565b6104a260048036036020811015610a3157600080fd5b5035612831565b61047960048036036080811015610a4e57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135640100000000811115610a8957600080fd5b820183602082011115610a9b57600080fd5b80359060200191846001830284011164010000000083111715610abd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612918945050505050565b6104e260048036036020811015610b1457600080fd5b5035612976565b610606612c70565b610606612c76565b610606612c7c565b610479612c82565b61060660048036036020811015610b5157600080fd5b5035612d84565b61060660048036036020811015610b6e57600080fd5b5035612d96565b6104be612da8565b61060660048036036020811015610b9357600080fd5b5035612db7565b610606612e78565b6104a260048036036040811015610bb857600080fd5b506001600160a01b0381358116916020013516612e7e565b61047960048036036020811015610be657600080fd5b5035612eac565b610606612ef8565b61047960048036036040811015610c0b57600080fd5b5080359060200135612efe565b61047960048036036020811015610c2e57600080fd5b50356001600160a01b0316612fa8565b61047960048036036060811015610c5457600080fd5b506001600160a01b03813581169160208101359091169060400135612ff8565b61047960048036036020811015610c8a57600080fd5b50356130d0565b610c9961208a565b610cd8576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601655565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b601b546001600160a01b031681565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b505050505090505b90565b610dae61208a565b610ded576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e1a8261311c565b610e555760405162461bcd60e51b815260040180806020018281038252602c8152602001806144a9602c913960400191505060405180910390fd5b506000908152600360205260409020546001600160a01b031690565b81610e7b8161311c565b610ec3576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b33610ecd82611708565b6001600160a01b031614610f28576040805162461bcd60e51b815260206004820152601960248201527f5661756c74206973206e6f74206f776e656420627920796f7500000000000000604482015290519081900360640190fd5b60008211610f7d576040805162461bcd60e51b815260206004820152601b60248201527f4d75737420626f72726f77206e6f6e2d7a65726f20616d6f756e740000000000604482015290519081900360640190fd5b610f85612476565b821115610fc35760405162461bcd60e51b815260040180806020018281038252602f815260200180614338602f913960400191505060405180910390fd5b600083815260186020526040812054610fe2908463ffffffff61313916565b6000858152601860205260409020549091508111610ffc57fe5b600084815260176020526040902054611015908261319a565b6110505760405162461bcd60e51b815260040180806020018281038252603a81526020018061451e603a913960400191505060405180910390fd5b6000848152601860205260409020819055601d5461107e906001600160a01b0316338563ffffffff6131cf16565b604080518581526020810185905281517f3e08df88d8e28f37df9bf227d3142ac506a364403445661a60891a49ed6792ca929181900390910190a150505050565b60006110ca82611708565b9050806001600160a01b0316836001600160a01b0316141561111d5760405162461bcd60e51b81526004018080602001828103825260218152602001806145586021913960400191505060405180910390fd5b806001600160a01b031661112f613221565b6001600160a01b0316148061115057506111508161114b613221565b612e7e565b61118b5760405162461bcd60e51b81526004018080602001828103825260388152602001806143986038913960400191505060405180910390fd5b60008281526003602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600081815260176020526040812054158061120e5750600082815260186020526040902054155b8061121f575061121d82612831565b155b1561122c57506000610cfb565b6000828152601760209081526040808320546018909252822054829161125191613225565b91509150806000141561126957600092505050610cfb565b600061127b838363ffffffff6132ac16565b9050611295601e54600a0a836132ac90919063ffffffff16565b915060006112ae601954846132ac90919063ffffffff16565b9695505050505050565b60085490565b60135481565b6112d56112cf613221565b826132ee565b6113105760405162461bcd60e51b81526004018080602001828103825260318152602001806145a96031913960400191505060405180910390fd5b61131b83838361338a565b505050565b600061132b836117bd565b82106113685760405162461bcd60e51b815260040180806020018281038252602b815260200180614240602b913960400191505060405180910390fd5b6001600160a01b038316600090815260066020526040902080548390811061138c57fe5b906000526020600020015490505b92915050565b601a5481565b6113ae61208a565b6113ed576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601155565b6113fa61208a565b611439576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601355565b61131b83838360405180602001604052806000815250612918565b6010546001600160a01b031681565b600e546001600160a01b031681565b600061139a8261311c565b600061148c6112b8565b82106114c95760405162461bcd60e51b815260040180806020018281038252602c8152602001806145da602c913960400191505060405180910390fd5b600882815481106114d657fe5b90600052602060002001549050919050565b600f805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b505050505081565b61157e61208a565b6115bd576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b6115c6816133a9565b50565b60008181526017602052604081205415806115ea57506115e882612831565b155b156115f757506000610cfb565b6000828152601760209081526040808320546018909252822054829161161c91613225565b915091506000611637601954836132ac90919063ffffffff16565b90508061164a5760009350505050610cfb565b61167c611655612553565b6116706103e8611670601a54866133c090919063ffffffff16565b9063ffffffff6132ac16565b95945050505050565b601d546001600160a01b031681565b6012546000906116ab81600163ffffffff61313916565b60128190558111156116b957fe5b6116c33382613419565b6040805182815233602082015281517f8b6c1d05c678fa59695e26465a85918ce0fc63a88f74af53d1daef8f0a9c7804929181900390910190a1905090565b60155481565b6000818152600260205260408120546001600160a01b03168061139a5760405162461bcd60e51b81526004018080602001828103825260298152602001806144216029913960400191505060405180910390fd5b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b60006001600160a01b0382166118045760405162461bcd60e51b815260040180806020018281038252602a8152602001806143f7602a913960400191505060405180910390fd5b6001600160a01b038216600090815260046020526040902061139a90613436565b61182d61208a565b61186c576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b6118758161311c565b6118bd576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b601555565b6118ca61208a565b611909576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b6020546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3602080546001600160a01b0319169055565b60145481565b816119638161311c565b6119ab576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b336119b582611708565b6001600160a01b031614611a10576040805162461bcd60e51b815260206004820152601960248201527f5661756c74206973206e6f74206f776e656420627920796f7500000000000000604482015290519081900360640190fd5b60005460ff16611a67576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff1916815583815260176020526040902054821115611abc5760405162461bcd60e51b81526004018080602001828103825260258152602001806142e76025913960400191505060405180910390fd5b600083815260176020526040812054611adb908463ffffffff61343a16565b60008581526018602052604090205490915015611b4757600084815260186020526040902054611b0c90829061319a565b611b475760405162461bcd60e51b815260040180806020018281038252603e81526020018061444a603e913960400191505060405180910390fd5b6000848152601760205260409020819055601c54611b75906001600160a01b0316338563ffffffff6131cf16565b604080518581526020810185905281517f6c0ea3bea9dd66afa8f9d39d6eb93d833466190330813b42835efc650dca4cb9929181900390910190a150506000805460ff191660011790555050565b601d54604080516370a0823160e01b8152336004820152905183926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611c0d57600080fd5b505afa158015611c21573d6000803e3d6000fd5b505050506040513d6020811015611c3757600080fd5b50511015611c8c576040805162461bcd60e51b815260206004820152601560248201527f546f6b656e2062616c616e636520746f6f206c6f770000000000000000000000604482015290519081900360640190fd5b600082815260186020526040902054811115611cd95760405162461bcd60e51b81526004018080602001828103825260278152602001806143d06027913960400191505060405180910390fd5b6000611d17611cf8612710611cec612553565b9063ffffffff6133c016565b611670611d03612c70565b601354611cec90879063ffffffff6133c016565b601d54909150611d38906001600160a01b031633308563ffffffff61347c16565b600083815260186020526040902054611d57908363ffffffff61343a16565b600084815260186020908152604080832093909355601790522054611d82908263ffffffff61343a16565b6000848152601760205260408082209290925560155481522054611dac908263ffffffff61313916565b601554600090815260176020908152604091829020929092558051858152918201849052818101839052517f31f96762af4051f367185773cc2f55bfb112a6c114b3407ded1f321a9eb199ac9181900360600190a1505050565b80611e108161311c565b611e58576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b33611e6282611708565b6001600160a01b031614611ebd576040805162461bcd60e51b815260206004820152601960248201527f5661756c74206973206e6f74206f776e656420627920796f7500000000000000604482015290519081900360640190fd5b60005460ff16611f14576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff191681558281526018602052604090205415611f7d576040805162461bcd60e51b815260206004820152601a60248201527f5661756c7420686173206f75747374616e64696e672064656274000000000000604482015290519081900360640190fd5b60008281526017602052604090205415611fc557611fc5611f9d83611708565b600084815260176020526040902054601c546001600160a01b0316919063ffffffff6131cf16565b611fce826134ef565b60008281526017602090815260408083208390556018825280832092909255815184815291517f4fe08624ee65b341c38ab9693d216b909d4ddee1bc8d3fe0fea14026c361b4659281900390910190a150506000805460ff19166001179055565b61203761208a565b612076576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601455565b6020546001600160a01b031690565b6020546000906001600160a01b03166120a1613221565b6001600160a01b031614905090565b6120b98161311c565b612101576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b601b546001600160a01b031615806121235750601b546001600160a01b031633145b61215e5760405162461bcd60e51b81526004018080602001828103825260228152602001806146556022913960400191505060405180910390fd5b6000818152601760209081526040808320546018909252822054829161218391613225565b9092509050600061219a838363ffffffff6132ac16565b905060115481106121dc5760405162461bcd60e51b81526004018080602001828103825260308152602001806145796030913960400191505060405180910390fd5b601e546121f3908390600a0a63ffffffff6132ac16565b9150600061220c601954846132ac90919063ffffffff16565b601d54604080516370a0823160e01b8152336004820152905192935083926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561225c57600080fd5b505afa158015612270573d6000803e3d6000fd5b505050506040513d602081101561228657600080fd5b505110156122c55760405162461bcd60e51b81526004018080602001828103825260318152602001806143676031913960400191505060405180910390fd5b601d546122e3906001600160a01b031633308463ffffffff61347c16565b60006122ee866115c9565b600087815260186020526040902054909150612310908363ffffffff61343a16565b600087815260186020526040812091909155612352612333612710611cec612553565b61167061233e612c70565b601354611cec90889063ffffffff6133c016565b600088815260176020526040902054909150612374908263ffffffff61343a16565b600088815260176020526040808220929092556015548152205461239e908263ffffffff61313916565b6015546000908152601760205260408082209290925588815220546123c9908363ffffffff61343a16565b600088815260176020908152604080832093909355338252601f905220546123f7908363ffffffff61313916565b336000908152601f60205260409020557f4d151d3a98b83151d51917640c221f8c8e3c054422ea1b48dcbbd57e3f4210d58761243281611708565b604080519283526001600160a01b0390911660208301523382820152606082018690526080820185905260a08201849052519081900360c00190a150505050505050565b601d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156124c157600080fd5b505afa1580156124d5573d6000803e3d6000fd5b505050506040513d60208110156124eb57600080fd5b5051905090565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b600080601060009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b1580156125a457600080fd5b505afa1580156125b8573d6000803e3d6000fd5b505050506040513d60a08110156125ce57600080fd5b506020015191505090565b6125e161208a565b612620576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b61264a61208a565b612689576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601d546040805163a9059cbb60e01b81526001600160a01b0390921660048301819052602483018490529051909163a9059cbb9160448083019260209291908290030181600087803b1580156126de57600080fd5b505af11580156126f2573d6000803e3d6000fd5b505050506040513d602081101561131b57600080fd5b612710613221565b6001600160a01b0316826001600160a01b03161415612776576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b8060056000612783613221565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556127c7613221565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b60135490565b60125481565b60145490565b601f6020526000908152604090205481565b600061283c8261311c565b612884576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b60008281526017602052604090205415806128ab5750600082815260186020526040902054155b156128b857506000610cfb565b600082815260176020908152604080832054601890925282205482916128dd91613225565b909250905060006128f4838363ffffffff6132ac16565b905060115481101561290c5760019350505050610cfb565b60009350505050610cfb565b612929612923613221565b836132ee565b6129645760405162461bcd60e51b81526004018080602001828103825260318152602001806145a96031913960400191505060405180910390fd5b61297084848484613501565b50505050565b60606129818261311c565b61298a57600080fd5b600e54604080517fc823744200000000000000000000000000000000000000000000000000000000815230600482015290516001600160a01b0390921691600091839163c823744291602480820192602092909190829003018186803b1580156129f357600080fd5b505afa158015612a07573d6000803e3d6000fd5b505050506040513d6020811015612a1d57600080fd5b5051600f5490915060026000196101006001841615020190911604612a515760405180602001604052806000815250612c68565b604080517f0b63fd62000000000000000000000000000000000000000000000000000000008152306004820152602481018690529051600f916001600160a01b03841691630b63fd6291604480820192600092909190829003018186803b158015612abb57600080fd5b505afa158015612acf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612af857600080fd5b8101908080516040519392919084640100000000821115612b1857600080fd5b908301906020820185811115612b2d57600080fd5b8251640100000000811182820188101715612b4757600080fd5b82525081516020918201929091019080838360005b83811015612b74578181015183820152602001612b5c565b50505050905090810190601f168015612ba15780820380516001836020036101000a031916815260200191505b506040525050506040516020018083805460018160011615610100020316600290048015612c065780601f10612be4576101008083540402835291820191612c06565b820191906000526020600020905b815481529060010190602001808311612bf2575b5050825160208401908083835b60208310612c325780518252601f199092019160209182019101612c13565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b949350505050565b60165490565b60165481565b60195481565b60005460ff16612cd9576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6000805460ff19168155338152601f6020526040902054612d41576040805162461bcd60e51b815260206004820152601c60248201527f446f6e2774206861766520616e797468696e6720666f7220796f752e00000000604482015290519081900360640190fd5b336000818152601f602052604081208054919055601c549091612d74916001600160a01b0316908363ffffffff6131cf16565b506000805460ff19166001179055565b60186020526000908152604090205481565b60176020526000908152604090205481565b601c546001600160a01b031681565b6000612dc28261311c565b612e0a576040805162461bcd60e51b815260206004820152601460248201527315985d5b1d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b6000828152601760205260409020541580612e315750600082815260186020526040902054155b15612e3e57506000610cfb565b60008281526017602090815260408083205460189092528220548291612e6391613225565b9092509050612c68828263ffffffff6132ac16565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b612eb461208a565b612ef3576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601955565b601e5481565b601c54612f1c906001600160a01b031633308463ffffffff61347c16565b600082815260176020526040812054612f3b908363ffffffff61313916565b600084815260176020526040902054909150811015612f5657fe5b600083815260176020908152604091829020839055815185815290810184905281517f52c4e7127ec34e8fc95f09ce2d06b4f00acca12ccbcdfb246ef67ee6aefe068d929181900390910190a1505050565b612fb061208a565b612fef576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b6115c681613553565b61300061208a565b61303f576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b816001600160a01b031663a9059cbb84836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561309f57600080fd5b505af11580156130b3573d6000803e3d6000fd5b505050506040513d60208110156130c957600080fd5b5050505050565b6130d861208a565b613117576040805162461bcd60e51b815260206004820181905260248201526000805160206144d5833981519152604482015290519081900360640190fd5b601a55565b6000908152600260205260409020546001600160a01b0316151590565b600082820183811015613193576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008060006131a98585613225565b909250905060006131c0838363ffffffff6132ac16565b60115411159695505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261131b9084906135f4565b3390565b600080613230612553565b61323657fe5b61323e612c70565b61324457fe5b600061325e613251612553565b869063ffffffff6133c016565b90508481101561326a57fe5b6000613277613251612c70565b90508481101561328357fe5b600061329683606463ffffffff6133c016565b90508281116132a157fe5b969095509350505050565b600061319383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506137ac565b60006132f98261311c565b6133345760405162461bcd60e51b815260040180806020018281038252602c81526020018061430c602c913960400191505060405180910390fd5b600061333f83611708565b9050806001600160a01b0316846001600160a01b0316148061337a5750836001600160a01b031661336f84610e0f565b6001600160a01b0316145b80612c685750612c688185612e7e565b61339583838361384e565b61339f8382613992565b61131b8282613a80565b80516133bc90600c906020840190614143565b5050565b6000826133cf5750600061139a565b828202828482816133dc57fe5b04146131935760405162461bcd60e51b81526004018080602001828103825260218152602001806144886021913960400191505060405180910390fd5b6134238282613abe565b61342d8282613a80565b6133bc81613bef565b5490565b600061319383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613c33565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03167f23b872dd000000000000000000000000000000000000000000000000000000001790526129709085906135f4565b6115c66134fb82611708565b82613c8d565b61350c84848461338a565b61351884848484613cd5565b6129705760405162461bcd60e51b815260040180806020018281038252603281526020018061426b6032913960400191505060405180910390fd5b6001600160a01b0381166135985760405162461bcd60e51b815260040180806020018281038252602681526020018061429d6026913960400191505060405180910390fd5b6020546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3602080546001600160a01b0319166001600160a01b0392909216919091179055565b613606826001600160a01b0316613f10565b613657576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106136955780518252601f199092019160209182019101613676565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146136f7576040519150601f19603f3d011682016040523d82523d6000602084013e6136fc565b606091505b509150915081613753576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156129705780806020019051602081101561376f57600080fd5b50516129705760405162461bcd60e51b815260040180806020018281038252602a81526020018061462b602a913960400191505060405180910390fd5b600081836138385760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156137fd5781810151838201526020016137e5565b50505050905090810190601f16801561382a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161384457fe5b0495945050505050565b826001600160a01b031661386182611708565b6001600160a01b0316146138a65760405162461bcd60e51b81526004018080602001828103825260298152602001806144f56029913960400191505060405180910390fd5b6001600160a01b0382166138eb5760405162461bcd60e51b81526004018080602001828103825260248152602001806142c36024913960400191505060405180910390fd5b6138f481613f49565b6001600160a01b038316600090815260046020526040902061391590613f84565b6001600160a01b038216600090815260046020526040902061393690613f9b565b60008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600660205260408120546139bc90600163ffffffff61343a16565b600083815260076020526040902054909150808214613a57576001600160a01b03841660009081526006602052604081208054849081106139f957fe5b906000526020600020015490508060066000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110613a3757fe5b600091825260208083209091019290925591825260079052604090208190555b6001600160a01b03841660009081526006602052604090208054906130c99060001983016141c1565b6001600160a01b0390911660009081526006602081815260408084208054868652600784529185208290559282526001810183559183529091200155565b6001600160a01b038216613b19576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b613b228161311c565b15613b74576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260026020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260049091529020613bb390613f9b565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60008184841115613c855760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156137fd5781810151838201526020016137e5565b505050900390565b613c978282613fa4565b6000818152600d602052604090205460026000196101006001841615020190911604156133bc576000818152600d602052604081206133bc916141e5565b6000613ce9846001600160a01b0316613f10565b613cf557506001612c68565b600060606001600160a01b038616630a85bd0160e11b613d13613221565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613d8c578181015183820152602001613d74565b50505050905090810190601f168015613db95780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310613e215780518252601f199092019160209182019101613e02565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613e83576040519150601f19603f3d011682016040523d82523d6000602084013e613e88565b606091505b509150915081613ed957805115613ea25780518082602001fd5b60405162461bcd60e51b815260040180806020018281038252603281526020018061426b6032913960400191505060405180910390fd5b6000818060200190516020811015613ef057600080fd5b50516001600160e01b031916630a85bd0160e11b149350612c6892505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612c68575050151592915050565b6000818152600360205260409020546001600160a01b0316156115c657600090815260036020526040902080546001600160a01b0319169055565b8054613f9790600163ffffffff61343a16565b9055565b80546001019055565b613fae8282613fd0565b613fb88282613992565b6000818152600760205260408120556133bc816140a7565b816001600160a01b0316613fe382611708565b6001600160a01b0316146140285760405162461bcd60e51b81526004018080602001828103825260258152602001806146066025913960400191505060405180910390fd5b61403181613f49565b6001600160a01b038216600090815260046020526040902061405290613f84565b60008181526002602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6008546000906140be90600163ffffffff61343a16565b600083815260096020526040812054600880549394509092849081106140e057fe5b9060005260206000200154905080600883815481106140fb57fe5b6000918252602080832090910192909255828152600990915260409020829055600880549061412e9060001983016141c1565b50505060009182525060096020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061418457805160ff19168380011785556141b1565b828001600101855582156141b1579182015b828111156141b1578251825591602001919060010190614196565b506141bd929150614225565b5090565b81548183558181111561131b5760008381526020902061131b918101908301614225565b50805460018160011615610100020316600290046000825580601f1061420b57506115c6565b601f0160209004906000526020600020908101906115c691905b610da391905b808211156141bd576000815560010161422b56fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573735661756c7420646f6573206e6f74206861766520656e6f75676820636f6c6c61746572616c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e626f72726f77546f6b656e3a2043616e6e6f74206d696e74206f76657220617661696c61626c6520737570706c792e546f6b656e2062616c616e636520746f6f206c6f7720746f20706179206f6666206f75747374616e64696e6720646562744552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c5661756c742064656274206c657373207468616e20616d6f756e7420746f20706179206261636b4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e5769746864726177616c20776f756c6420707574207661756c742062656c6f77206d696e696d756d20636f6c6c61746572616c2070657263656e74616765536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e426f72726f7720776f756c6420707574207661756c742062656c6f77206d696e696d756d20636f6c6c61746572616c2070657263656e746167654552433732313a20617070726f76616c20746f2063757272656e74206f776e65725661756c74206973206e6f742062656c6f77206d696e696d756d20636f6c6c61746572616c2070657263656e746167654552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565646c69717569646174696f6e2069732064697361626c656420666f72207075626c6963a265627a7a72315820ce00cfe73834e81a967019cda11f11e2a23e6da4f1f41cebdb965fee672ab68464736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000fda41a1d4555b85021312b765c6d519b9c66f93000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f10000000000000000000000000470cd31c8fcc42671465880ba81d631f0b76c1d0000000000000000000000004920184f60221a75abf39bb0b4d06ac25d9b2bb20000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001163616d57455448204d4149205661756c74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000863616d57454d5654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001568747470733a2f2f697066732e696f2f697066732f0000000000000000000000
-----Decoded View---------------
Arg [0] : ethPriceSourceAddress (address): 0x0fDa41a1d4555b85021312B765c6D519B9c66f93
Arg [1] : minimumCollateralPercentage (uint256): 150
Arg [2] : name (string): camWETH MAI Vault
Arg [3] : symbol (string): camWEMVT
Arg [4] : _mai (address): 0xa3Fa99A148fA48D14Ed51d610c367C61876997F1
Arg [5] : _collateral (address): 0x0470CD31C8FcC42671465880BA81D631F0B76C1D
Arg [6] : meta (address): 0x4920184F60221a75Abf39BB0b4D06ac25D9b2bb2
Arg [7] : baseURI (string): https://ipfs.io/ipfs/
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000fda41a1d4555b85021312b765c6d519b9c66f93
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f1
Arg [5] : 0000000000000000000000000470cd31c8fcc42671465880ba81d631f0b76c1d
Arg [6] : 0000000000000000000000004920184f60221a75abf39bb0b4d06ac25d9b2bb2
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [9] : 63616d57455448204d4149205661756c74000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [11] : 63616d57454d5654000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [13] : 68747470733a2f2f697066732e696f2f697066732f0000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $0.995444 | 1,835,306.9811 | $1,826,945.32 |
[ 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.