Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 813 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Pause | 10359020 | 1745 days ago | IN | 0 ETH | 0.0012036 | ||||
Withdraw | 10358704 | 1745 days ago | IN | 0 ETH | 0.00834683 | ||||
Cancel | 10358696 | 1745 days ago | IN | 0 ETH | 0.00373593 | ||||
Withdraw Interes... | 10358688 | 1745 days ago | IN | 0 ETH | 0.00563696 | ||||
Cancel | 10357534 | 1745 days ago | IN | 0 ETH | 0.00245504 | ||||
Withdraw | 10357331 | 1745 days ago | IN | 0 ETH | 0.00452539 | ||||
Withdraw | 10357331 | 1745 days ago | IN | 0 ETH | 0.00452539 | ||||
Withdraw | 10357318 | 1745 days ago | IN | 0 ETH | 0.00452539 | ||||
Withdraw | 10357318 | 1745 days ago | IN | 0 ETH | 0.00452539 | ||||
Cancel | 10357310 | 1745 days ago | IN | 0 ETH | 0.00224156 | ||||
Cancel | 10357310 | 1745 days ago | IN | 0 ETH | 0.00224156 | ||||
Cancel | 10357310 | 1745 days ago | IN | 0 ETH | 0.00224156 | ||||
Cancel | 10357308 | 1745 days ago | IN | 0 ETH | 0.00224156 | ||||
Withdraw Interes... | 10357305 | 1745 days ago | IN | 0 ETH | 0.00338217 | ||||
Withdraw Interes... | 10357305 | 1745 days ago | IN | 0 ETH | 0.00338217 | ||||
Withdraw Interes... | 10357305 | 1745 days ago | IN | 0 ETH | 0.00338217 | ||||
Withdraw Interes... | 10357305 | 1745 days ago | IN | 0 ETH | 0.00338217 | ||||
Withdraw | 10357282 | 1745 days ago | IN | 0 ETH | 0.00452539 | ||||
Withdraw | 10357282 | 1745 days ago | IN | 0 ETH | 0.00452539 | ||||
Withdraw | 10357282 | 1745 days ago | IN | 0 ETH | 0.00452539 | ||||
Withdraw | 10357282 | 1745 days ago | IN | 0 ETH | 0.00515539 | ||||
Withdraw | 10357282 | 1745 days ago | IN | 0 ETH | 0.00452539 | ||||
Cancel | 10357267 | 1745 days ago | IN | 0 ETH | 0.00224156 | ||||
Cancel | 10357267 | 1745 days ago | IN | 0 ETH | 0.00224156 | ||||
Cancel | 10357267 | 1745 days ago | IN | 0 ETH | 0.00224156 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
- | 10194284 | 1770 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract contains unverified libraries: Decimals
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Lockup
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-06-03 */ 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; } } /** * @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 ); } /** * @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; } } /** * @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" ) ); } } // prettier-ignore /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract MinterRole is Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor() internal { _addMinter(_msgSender()); } modifier onlyMinter() { require( isMinter(_msgSender()), "MinterRole: caller does not have the Minter role" ); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } /** * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole}, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See {ERC20-_mint}. * * Requirements: * * - the caller must have the {MinterRole}. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } contract PauserRole is Context { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor() internal { _addPauser(_msgSender()); } modifier onlyPauser() { require( isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role" ); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(_msgSender()); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context, PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor() internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(_msgSender()); } } library Decimals { using SafeMath for uint256; uint120 private constant basisValue = 1000000000000000000; function outOf(uint256 _a, uint256 _b) internal pure returns (uint256 result) { if (_a == 0) { return 0; } uint256 a = _a.mul(basisValue); if (a < _b) { return 0; } return (a.div(_b)); } function basis() external pure returns (uint120) { return basisValue; } } // prettier-ignore contract IGroup { function isGroup(address _addr) public view returns (bool); function addGroup(address _addr) external; function getGroupKey(address _addr) internal pure returns (bytes32) { return keccak256(abi.encodePacked("_group", _addr)); } } contract AddressValidator { string constant errorMessage = "this is illegal address"; function validateIllegalAddress(address _addr) external pure { require(_addr != address(0), errorMessage); } function validateGroup(address _addr, address _groupAddr) external view { require(IGroup(_groupAddr).isGroup(_addr), errorMessage); } function validateGroups( address _addr, address _groupAddr1, address _groupAddr2 ) external view { if (IGroup(_groupAddr1).isGroup(_addr)) { return; } require(IGroup(_groupAddr2).isGroup(_addr), errorMessage); } function validateAddress(address _addr, address _target) external pure { require(_addr == _target, errorMessage); } function validateAddresses( address _addr, address _target1, address _target2 ) external pure { if (_addr == _target1) { return; } require(_addr == _target2, errorMessage); } } contract UsingValidator { AddressValidator private _validator; constructor() public { _validator = new AddressValidator(); } function addressValidator() internal view returns (AddressValidator) { return _validator; } } // prettier-ignore /** * @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; } } contract Killable { address payable public _owner; constructor() internal { _owner = msg.sender; } function kill() public { require(msg.sender == _owner, "only owner method"); selfdestruct(_owner); } } /** * @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; } } contract AddressConfig is Ownable, UsingValidator, Killable { address public token = 0x98626E2C9231f03504273d55f397409deFD4a093; address public allocator; address public allocatorStorage; address public withdraw; address public withdrawStorage; address public marketFactory; address public marketGroup; address public propertyFactory; address public propertyGroup; address public metricsGroup; address public metricsFactory; address public policy; address public policyFactory; address public policySet; address public policyGroup; address public lockup; address public lockupStorage; address public voteTimes; address public voteTimesStorage; address public voteCounter; address public voteCounterStorage; function setAllocator(address _addr) external onlyOwner { allocator = _addr; } function setAllocatorStorage(address _addr) external onlyOwner { allocatorStorage = _addr; } function setWithdraw(address _addr) external onlyOwner { withdraw = _addr; } function setWithdrawStorage(address _addr) external onlyOwner { withdrawStorage = _addr; } function setMarketFactory(address _addr) external onlyOwner { marketFactory = _addr; } function setMarketGroup(address _addr) external onlyOwner { marketGroup = _addr; } function setPropertyFactory(address _addr) external onlyOwner { propertyFactory = _addr; } function setPropertyGroup(address _addr) external onlyOwner { propertyGroup = _addr; } function setMetricsFactory(address _addr) external onlyOwner { metricsFactory = _addr; } function setMetricsGroup(address _addr) external onlyOwner { metricsGroup = _addr; } function setPolicyFactory(address _addr) external onlyOwner { policyFactory = _addr; } function setPolicyGroup(address _addr) external onlyOwner { policyGroup = _addr; } function setPolicySet(address _addr) external onlyOwner { policySet = _addr; } function setPolicy(address _addr) external { addressValidator().validateAddress(msg.sender, policyFactory); policy = _addr; } function setToken(address _addr) external onlyOwner { token = _addr; } function setLockup(address _addr) external onlyOwner { lockup = _addr; } function setLockupStorage(address _addr) external onlyOwner { lockupStorage = _addr; } function setVoteTimes(address _addr) external onlyOwner { voteTimes = _addr; } function setVoteTimesStorage(address _addr) external onlyOwner { voteTimesStorage = _addr; } function setVoteCounter(address _addr) external onlyOwner { voteCounter = _addr; } function setVoteCounterStorage(address _addr) external onlyOwner { voteCounterStorage = _addr; } } contract UsingConfig { AddressConfig private _config; constructor(address _addressConfig) public { _config = AddressConfig(_addressConfig); } function config() internal view returns (AddressConfig) { return _config; } function configAddress() external view returns (address) { return address(_config); } } contract IAllocator { function allocate(address _metrics) external; function calculatedCallback(address _metrics, uint256 _value) external; function beforeBalanceChange( address _property, address _from, address _to // solium-disable-next-line indentation ) external; function getRewardsAmount(address _property) external view returns (uint256); function allocation( uint256 _blocks, uint256 _mint, uint256 _value, uint256 _marketValue, uint256 _assets, uint256 _totalAssets ) public pure returns ( // solium-disable-next-line indentation uint256 ); } contract EternalStorage { address private currentOwner = msg.sender; mapping(bytes32 => uint256) private uIntStorage; mapping(bytes32 => string) private stringStorage; mapping(bytes32 => address) private addressStorage; mapping(bytes32 => bytes32) private bytesStorage; mapping(bytes32 => bool) private boolStorage; mapping(bytes32 => int256) private intStorage; modifier onlyCurrentOwner() { require(msg.sender == currentOwner, "not current owner"); _; } function changeOwner(address _newOwner) external { require(msg.sender == currentOwner, "not current owner"); currentOwner = _newOwner; } // *** Getter Methods *** function getUint(bytes32 _key) external view returns (uint256) { return uIntStorage[_key]; } function getString(bytes32 _key) external view returns (string memory) { return stringStorage[_key]; } function getAddress(bytes32 _key) external view returns (address) { return addressStorage[_key]; } function getBytes(bytes32 _key) external view returns (bytes32) { return bytesStorage[_key]; } function getBool(bytes32 _key) external view returns (bool) { return boolStorage[_key]; } function getInt(bytes32 _key) external view returns (int256) { return intStorage[_key]; } // *** Setter Methods *** function setUint(bytes32 _key, uint256 _value) external onlyCurrentOwner { uIntStorage[_key] = _value; } function setString(bytes32 _key, string calldata _value) external onlyCurrentOwner { stringStorage[_key] = _value; } function setAddress(bytes32 _key, address _value) external onlyCurrentOwner { addressStorage[_key] = _value; } function setBytes(bytes32 _key, bytes32 _value) external onlyCurrentOwner { bytesStorage[_key] = _value; } function setBool(bytes32 _key, bool _value) external onlyCurrentOwner { boolStorage[_key] = _value; } function setInt(bytes32 _key, int256 _value) external onlyCurrentOwner { intStorage[_key] = _value; } // *** Delete Methods *** function deleteUint(bytes32 _key) external onlyCurrentOwner { delete uIntStorage[_key]; } function deleteString(bytes32 _key) external onlyCurrentOwner { delete stringStorage[_key]; } function deleteAddress(bytes32 _key) external onlyCurrentOwner { delete addressStorage[_key]; } function deleteBytes(bytes32 _key) external onlyCurrentOwner { delete bytesStorage[_key]; } function deleteBool(bytes32 _key) external onlyCurrentOwner { delete boolStorage[_key]; } function deleteInt(bytes32 _key) external onlyCurrentOwner { delete intStorage[_key]; } } contract UsingStorage is Ownable, Pausable { address private _storage; modifier hasStorage() { require(_storage != address(0), "storage is not setted"); _; } function eternalStorage() internal view hasStorage returns (EternalStorage) { require(paused() == false, "You cannot use that"); return EternalStorage(_storage); } function getStorageAddress() external view hasStorage returns (address) { return _storage; } function createStorage() external onlyOwner { require(_storage == address(0), "storage is setted"); EternalStorage tmp = new EternalStorage(); _storage = address(tmp); } function setStorage(address _storageAddress) external onlyOwner { _storage = _storageAddress; } function changeOwner(address newOwner) external onlyOwner { EternalStorage(_storage).changeOwner(newOwner); } } contract VoteTimesStorage is UsingStorage, UsingConfig, UsingValidator, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} // Vote Times function getVoteTimes() external view returns (uint256) { return eternalStorage().getUint(getVoteTimesKey()); } function setVoteTimes(uint256 times) external { addressValidator().validateAddress(msg.sender, config().voteTimes()); return eternalStorage().setUint(getVoteTimesKey(), times); } function getVoteTimesKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_voteTimes")); } //Vote Times By Property function getVoteTimesByProperty(address _property) external view returns (uint256) { return eternalStorage().getUint(getVoteTimesByPropertyKey(_property)); } function setVoteTimesByProperty(address _property, uint256 times) external { addressValidator().validateAddress(msg.sender, config().voteTimes()); return eternalStorage().setUint( getVoteTimesByPropertyKey(_property), times ); } function getVoteTimesByPropertyKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_voteTimesByProperty", _property)); } } contract VoteTimes is UsingConfig, UsingValidator, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addVoteTime() external { addressValidator().validateAddresses( msg.sender, config().marketFactory(), config().policyFactory() ); uint256 voteTimes = getStorage().getVoteTimes(); voteTimes = voteTimes.add(1); getStorage().setVoteTimes(voteTimes); } function addVoteTimesByProperty(address _property) external { addressValidator().validateAddress(msg.sender, config().voteCounter()); uint256 voteTimesByProperty = getStorage().getVoteTimesByProperty( _property ); voteTimesByProperty = voteTimesByProperty.add(1); getStorage().setVoteTimesByProperty(_property, voteTimesByProperty); } function resetVoteTimesByProperty(address _property) external { addressValidator().validateAddresses( msg.sender, config().allocator(), config().propertyFactory() ); uint256 voteTimes = getStorage().getVoteTimes(); getStorage().setVoteTimesByProperty(_property, voteTimes); } function getAbstentionTimes(address _property) external view returns (uint256) { uint256 voteTimes = getStorage().getVoteTimes(); uint256 voteTimesByProperty = getStorage().getVoteTimesByProperty( _property ); return voteTimes.sub(voteTimesByProperty); } function getStorage() private view returns (VoteTimesStorage) { return VoteTimesStorage(config().voteTimesStorage()); } } // prettier-ignore contract VoteCounterStorage is UsingStorage, UsingConfig, UsingValidator { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} // Already Vote Flg function setAlreadyVoteFlg( address _user, address _sender, address _property ) external { addressValidator().validateAddress(msg.sender, config().voteCounter()); bytes32 alreadyVoteKey = getAlreadyVoteKey(_user, _sender, _property); return eternalStorage().setBool(alreadyVoteKey, true); } function getAlreadyVoteFlg( address _user, address _sender, address _property ) external view returns (bool) { bytes32 alreadyVoteKey = getAlreadyVoteKey(_user, _sender, _property); return eternalStorage().getBool(alreadyVoteKey); } function getAlreadyVoteKey( address _sender, address _target, address _property ) private pure returns (bytes32) { return keccak256( abi.encodePacked("_alreadyVote", _sender, _target, _property) ); } // Agree Count function getAgreeCount(address _sender) external view returns (uint256) { return eternalStorage().getUint(getAgreeVoteCountKey(_sender)); } function setAgreeCount(address _sender, uint256 count) external { addressValidator().validateAddress(msg.sender, config().voteCounter()); eternalStorage().setUint(getAgreeVoteCountKey(_sender), count); } function getAgreeVoteCountKey(address _sender) private pure returns (bytes32) { return keccak256(abi.encodePacked(_sender, "_agreeVoteCount")); } // Opposite Count function getOppositeCount(address _sender) external view returns (uint256) { return eternalStorage().getUint(getOppositeVoteCountKey(_sender)); } function setOppositeCount(address _sender, uint256 count) external { addressValidator().validateAddress(msg.sender, config().voteCounter()); eternalStorage().setUint(getOppositeVoteCountKey(_sender), count); } function getOppositeVoteCountKey(address _sender) private pure returns (bytes32) { return keccak256(abi.encodePacked(_sender, "_oppositeVoteCount")); } } contract VoteCounter is UsingConfig, UsingValidator, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addVoteCount( address _user, address _property, bool _agree ) external { addressValidator().validateGroups( msg.sender, config().marketGroup(), config().policyGroup() ); bool alreadyVote = getStorage().getAlreadyVoteFlg( _user, msg.sender, _property ); require(alreadyVote == false, "already vote"); uint256 voteCount = getVoteCount(_user, _property); require(voteCount != 0, "vote count is 0"); getStorage().setAlreadyVoteFlg(_user, msg.sender, _property); if (_agree) { addAgreeCount(msg.sender, voteCount); } else { addOppositeCount(msg.sender, voteCount); } } function getAgreeCount(address _sender) external view returns (uint256) { return getStorage().getAgreeCount(_sender); } function getOppositeCount(address _sender) external view returns (uint256) { return getStorage().getOppositeCount(_sender); } function getVoteCount(address _sender, address _property) private returns (uint256) { uint256 voteCount; if (Property(_property).author() == _sender) { // solium-disable-next-line operator-whitespace voteCount = Lockup(config().lockup()) .getPropertyValue(_property) .add( Allocator(config().allocator()).getRewardsAmount(_property) ); VoteTimes(config().voteTimes()).addVoteTimesByProperty(_property); } else { voteCount = Lockup(config().lockup()).getValue(_property, _sender); } return voteCount; } function addAgreeCount(address _target, uint256 _voteCount) private { uint256 agreeCount = getStorage().getAgreeCount(_target); agreeCount = agreeCount.add(_voteCount); getStorage().setAgreeCount(_target, agreeCount); } function addOppositeCount(address _target, uint256 _voteCount) private { uint256 oppositeCount = getStorage().getOppositeCount(_target); oppositeCount = oppositeCount.add(_voteCount); getStorage().setOppositeCount(_target, oppositeCount); } function getStorage() private view returns (VoteCounterStorage) { return VoteCounterStorage(config().voteCounterStorage()); } } contract IMarket { function authenticate( address _prop, string memory _args1, string memory _args2, string memory _args3, string memory _args4, string memory _args5 ) public returns ( // solium-disable-next-line indentation address ); function authenticatedCallback(address _property, bytes32 _idHash) external returns (address); function deauthenticate(address _metrics) external; function vote(address _property, bool _agree) external; function schema() external view returns (string memory); function behavior() external view returns (address); } contract IMarketBehavior { string public schema; function authenticate( address _prop, string memory _args1, string memory _args2, string memory _args3, string memory _args4, string memory _args5, address market ) public returns ( // solium-disable-next-line indentation address ); function calculate( address _metrics, uint256 _start, uint256 _end ) external returns ( // solium-disable-next-line indentation bool ); function getId(address _metrics) external view returns (string memory); } contract PropertyGroup is UsingConfig, UsingStorage, UsingValidator, IGroup, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().propertyFactory() ); require(isGroup(_addr) == false, "already enabled"); eternalStorage().setBool(getGroupKey(_addr), true); } function isGroup(address _addr) public view returns (bool) { return eternalStorage().getBool(getGroupKey(_addr)); } } contract IPolicy { function rewards(uint256 _lockups, uint256 _assets) external view returns (uint256); function holdersShare(uint256 _amount, uint256 _lockups) external view returns (uint256); function assetValue(uint256 _value, uint256 _lockups) external view returns (uint256); function authenticationFee(uint256 _assets, uint256 _propertyAssets) external view returns (uint256); function marketApproval(uint256 _agree, uint256 _opposite) external view returns (bool); function policyApproval(uint256 _agree, uint256 _opposite) external view returns (bool); function marketVotingBlocks() external view returns (uint256); function policyVotingBlocks() external view returns (uint256); function abstentionPenalty(uint256 _count) external view returns (uint256); function lockUpBlocks() external view returns (uint256); } contract MarketGroup is UsingConfig, UsingStorage, IGroup, UsingValidator, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) UsingStorage() {} function addGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().marketFactory() ); require(isGroup(_addr) == false, "already enabled"); eternalStorage().setBool(getGroupKey(_addr), true); addCount(); } function isGroup(address _addr) public view returns (bool) { return eternalStorage().getBool(getGroupKey(_addr)); } function addCount() private { bytes32 key = getCountKey(); uint256 number = eternalStorage().getUint(key); number = number.add(1); eternalStorage().setUint(key, number); } function getCount() external view returns (uint256) { bytes32 key = getCountKey(); return eternalStorage().getUint(key); } function getCountKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_count")); } } contract PolicySet is UsingConfig, UsingStorage, UsingValidator, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addSet(address _addr) external { addressValidator().validateAddress( msg.sender, config().policyFactory() ); uint256 index = eternalStorage().getUint(getPlicySetIndexKey()); bytes32 key = getIndexKey(index); eternalStorage().setAddress(key, _addr); index = index.add(1); eternalStorage().setUint(getPlicySetIndexKey(), index); } function deleteAll() external { addressValidator().validateAddress( msg.sender, config().policyFactory() ); uint256 index = eternalStorage().getUint(getPlicySetIndexKey()); for (uint256 i = 0; i < index; i++) { bytes32 key = getIndexKey(i); eternalStorage().setAddress(key, address(0)); } eternalStorage().setUint(getPlicySetIndexKey(), 0); } function count() external view returns (uint256) { return eternalStorage().getUint(getPlicySetIndexKey()); } function get(uint256 _index) external view returns (address) { bytes32 key = getIndexKey(_index); return eternalStorage().getAddress(key); } function getIndexKey(uint256 _index) private pure returns (bytes32) { return keccak256(abi.encodePacked("_index", _index)); } function getPlicySetIndexKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_policySetIndex")); } } contract PolicyGroup is UsingConfig, UsingStorage, UsingValidator, IGroup, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().policyFactory() ); require(isGroup(_addr) == false, "already enabled"); eternalStorage().setBool(getGroupKey(_addr), true); } function deleteGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().policyFactory() ); require(isGroup(_addr), "not enabled"); return eternalStorage().setBool(getGroupKey(_addr), false); } function isGroup(address _addr) public view returns (bool) { return eternalStorage().getBool(getGroupKey(_addr)); } } contract PolicyFactory is Pausable, UsingConfig, UsingValidator, Killable { event Create(address indexed _from, address _policy, address _innerPolicy); // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function create(address _newPolicyAddress) external returns (address) { require(paused() == false, "You cannot use that"); addressValidator().validateIllegalAddress(_newPolicyAddress); Policy policy = new Policy(address(config()), _newPolicyAddress); address policyAddress = address(policy); emit Create(msg.sender, policyAddress, _newPolicyAddress); if (config().policy() == address(0)) { config().setPolicy(policyAddress); } else { VoteTimes(config().voteTimes()).addVoteTime(); } PolicyGroup policyGroup = PolicyGroup(config().policyGroup()); policyGroup.addGroup(policyAddress); PolicySet policySet = PolicySet(config().policySet()); policySet.addSet(policyAddress); return policyAddress; } function convergePolicy(address _currentPolicyAddress) external { addressValidator().validateGroup(msg.sender, config().policyGroup()); config().setPolicy(_currentPolicyAddress); PolicySet policySet = PolicySet(config().policySet()); PolicyGroup policyGroup = PolicyGroup(config().policyGroup()); for (uint256 i = 0; i < policySet.count(); i++) { address policyAddress = policySet.get(i); if (policyAddress == _currentPolicyAddress) { continue; } Policy(policyAddress).kill(); policyGroup.deleteGroup(policyAddress); } policySet.deleteAll(); policySet.addSet(_currentPolicyAddress); } } contract Policy is Killable, UsingConfig, UsingValidator { using SafeMath for uint256; IPolicy private _policy; uint256 private _votingEndBlockNumber; constructor(address _config, address _innerPolicyAddress) public UsingConfig(_config) { addressValidator().validateAddress( msg.sender, config().policyFactory() ); _policy = IPolicy(_innerPolicyAddress); setVotingEndBlockNumber(); } function voting() public view returns (bool) { return block.number <= _votingEndBlockNumber; } function rewards(uint256 _lockups, uint256 _assets) external view returns (uint256) { return _policy.rewards(_lockups, _assets); } function holdersShare(uint256 _amount, uint256 _lockups) external view returns (uint256) { return _policy.holdersShare(_amount, _lockups); } function assetValue(uint256 _value, uint256 _lockups) external view returns (uint256) { return _policy.assetValue(_value, _lockups); } function authenticationFee(uint256 _assets, uint256 _propertyAssets) external view returns (uint256) { return _policy.authenticationFee(_assets, _propertyAssets); } function marketApproval(uint256 _agree, uint256 _opposite) external view returns (bool) { return _policy.marketApproval(_agree, _opposite); } function policyApproval(uint256 _agree, uint256 _opposite) external view returns (bool) { return _policy.policyApproval(_agree, _opposite); } function marketVotingBlocks() external view returns (uint256) { return _policy.marketVotingBlocks(); } function policyVotingBlocks() external view returns (uint256) { return _policy.policyVotingBlocks(); } function abstentionPenalty(uint256 _count) external view returns (uint256) { return _policy.abstentionPenalty(_count); } function lockUpBlocks() external view returns (uint256) { return _policy.lockUpBlocks(); } function vote(address _property, bool _agree) external { addressValidator().validateGroup(_property, config().propertyGroup()); require(config().policy() != address(this), "this policy is current"); require(voting(), "voting deadline is over"); VoteCounter voteCounter = VoteCounter(config().voteCounter()); voteCounter.addVoteCount(msg.sender, _property, _agree); bool result = Policy(config().policy()).policyApproval( voteCounter.getAgreeCount(address(this)), voteCounter.getOppositeCount(address(this)) ); if (result == false) { return; } PolicyFactory(config().policyFactory()).convergePolicy(address(this)); _votingEndBlockNumber = 0; } function setVotingEndBlockNumber() private { if (config().policy() == address(0)) { return; } uint256 tmp = Policy(config().policy()).policyVotingBlocks(); _votingEndBlockNumber = block.number.add(tmp); } } contract Metrics { address public market; address public property; constructor(address _market, address _property) public { //Do not validate because there is no AddressConfig market = _market; property = _property; } } contract MetricsGroup is UsingConfig, UsingStorage, UsingValidator, IGroup { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addGroup(address _addr) external { require(paused() == false, "You cannot use that"); addressValidator().validateAddress( msg.sender, config().metricsFactory() ); require(isGroup(_addr) == false, "already enabled"); eternalStorage().setBool(getGroupKey(_addr), true); uint256 totalCount = eternalStorage().getUint(getTotalCountKey()); totalCount = totalCount.add(1); eternalStorage().setUint(getTotalCountKey(), totalCount); } function removeGroup(address _addr) external { require(paused() == false, "You cannot use that"); addressValidator().validateAddress( msg.sender, config().metricsFactory() ); require(isGroup(_addr), "address is not group"); eternalStorage().setBool(getGroupKey(_addr), false); uint256 totalCount = eternalStorage().getUint(getTotalCountKey()); totalCount = totalCount.sub(1); eternalStorage().setUint(getTotalCountKey(), totalCount); } function isGroup(address _addr) public view returns (bool) { return eternalStorage().getBool(getGroupKey(_addr)); } function totalIssuedMetrics() external view returns (uint256) { return eternalStorage().getUint(getTotalCountKey()); } function getTotalCountKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_totalCount")); } } contract MetricsFactory is Pausable, UsingConfig, UsingValidator { event Create(address indexed _from, address _metrics); event Destroy(address indexed _from, address _metrics); // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function create(address _property) external returns (address) { require(paused() == false, "You cannot use that"); addressValidator().validateGroup(msg.sender, config().marketGroup()); Metrics metrics = new Metrics(msg.sender, _property); MetricsGroup metricsGroup = MetricsGroup(config().metricsGroup()); address metricsAddress = address(metrics); metricsGroup.addGroup(metricsAddress); emit Create(msg.sender, metricsAddress); return metricsAddress; } function destroy(address _metrics) external { require(paused() == false, "You cannot use that"); MetricsGroup metricsGroup = MetricsGroup(config().metricsGroup()); require(metricsGroup.isGroup(_metrics), "address is not metrics"); addressValidator().validateGroup(msg.sender, config().marketGroup()); Metrics metrics = Metrics(_metrics); addressValidator().validateAddress(msg.sender, metrics.market()); metricsGroup.removeGroup(_metrics); emit Destroy(msg.sender, _metrics); } } // prettier-ignore // prettier-ignore // prettier-ignore /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See {ERC20-_burnFrom}. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } contract Dev is ERC20Detailed, ERC20Mintable, ERC20Burnable, UsingConfig, UsingValidator { constructor(address _config) public ERC20Detailed("Dev", "DEV", 18) UsingConfig(_config) {} function deposit(address _to, uint256 _amount) external returns (bool) { require(transfer(_to, _amount), "dev transfer failed"); lock(msg.sender, _to, _amount); return true; } function depositFrom( address _from, address _to, uint256 _amount ) external returns (bool) { require(transferFrom(_from, _to, _amount), "dev transferFrom failed"); lock(_from, _to, _amount); return true; } function fee(address _from, uint256 _amount) external returns (bool) { addressValidator().validateGroup(msg.sender, config().marketGroup()); _burn(_from, _amount); return true; } function lock( address _from, address _to, uint256 _amount ) private { Lockup(config().lockup()).lockup(_from, _to, _amount); } } contract Market is UsingConfig, IMarket, UsingValidator { using SafeMath for uint256; bool public enabled; address public behavior; uint256 private _votingEndBlockNumber; uint256 public issuedMetrics; mapping(bytes32 => bool) private idMap; mapping(address => bytes32) private idHashMetricsMap; constructor(address _config, address _behavior) public UsingConfig(_config) { addressValidator().validateAddress( msg.sender, config().marketFactory() ); behavior = _behavior; enabled = false; uint256 marketVotingBlocks = Policy(config().policy()) .marketVotingBlocks(); _votingEndBlockNumber = block.number.add(marketVotingBlocks); } function propertyValidation(address _prop) internal view { addressValidator().validateAddress( msg.sender, Property(_prop).author() ); require(enabled, "market is not enabled"); } modifier onlyPropertyAuthor(address _prop) { propertyValidation(_prop); _; } modifier onlyLinkedPropertyAuthor(address _metrics) { address _prop = Metrics(_metrics).property(); propertyValidation(_prop); _; } function toEnable() external { addressValidator().validateAddress( msg.sender, config().marketFactory() ); enabled = true; } function authenticate( address _prop, string memory _args1, string memory _args2, string memory _args3, string memory _args4, string memory _args5 ) public onlyPropertyAuthor(_prop) returns (address) { uint256 len = bytes(_args1).length; require(len > 0, "id is required"); return IMarketBehavior(behavior).authenticate( _prop, _args1, _args2, _args3, _args4, _args5, address(this) ); } function getAuthenticationFee(address _property) private view returns (uint256) { uint256 tokenValue = Lockup(config().lockup()).getPropertyValue( _property ); Policy policy = Policy(config().policy()); MetricsGroup metricsGroup = MetricsGroup(config().metricsGroup()); return policy.authenticationFee( metricsGroup.totalIssuedMetrics(), tokenValue ); } function authenticatedCallback(address _property, bytes32 _idHash) external returns (address) { addressValidator().validateAddress(msg.sender, behavior); require(enabled, "market is not enabled"); require(idMap[_idHash] == false, "id is duplicated"); idMap[_idHash] = true; address sender = Property(_property).author(); MetricsFactory metricsFactory = MetricsFactory( config().metricsFactory() ); address metrics = metricsFactory.create(_property); idHashMetricsMap[metrics] = _idHash; uint256 authenticationFee = getAuthenticationFee(_property); require( Dev(config().token()).fee(sender, authenticationFee), "dev fee failed" ); issuedMetrics = issuedMetrics.add(1); return metrics; } function deauthenticate(address _metrics) external onlyLinkedPropertyAuthor(_metrics) { bytes32 idHash = idHashMetricsMap[_metrics]; require(idMap[idHash], "not authenticated"); idMap[idHash] = false; idHashMetricsMap[_metrics] = bytes32(0); MetricsFactory metricsFactory = MetricsFactory( config().metricsFactory() ); metricsFactory.destroy(_metrics); issuedMetrics = issuedMetrics.sub(1); } function vote(address _property, bool _agree) external { addressValidator().validateGroup(_property, config().propertyGroup()); require(enabled == false, "market is already enabled"); require( block.number <= _votingEndBlockNumber, "voting deadline is over" ); VoteCounter voteCounter = VoteCounter(config().voteCounter()); voteCounter.addVoteCount(msg.sender, _property, _agree); enabled = Policy(config().policy()).marketApproval( voteCounter.getAgreeCount(address(this)), voteCounter.getOppositeCount(address(this)) ); } function schema() external view returns (string memory) { return IMarketBehavior(behavior).schema(); } } // prettier-ignore contract WithdrawStorage is UsingStorage, UsingConfig, UsingValidator { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} // RewardsAmount function setRewardsAmount(address _property, uint256 _value) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint(getRewardsAmountKey(_property), _value); } function getRewardsAmount(address _property) external view returns (uint256) { return eternalStorage().getUint(getRewardsAmountKey(_property)); } function getRewardsAmountKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_rewardsAmount", _property)); } // CumulativePrice function setCumulativePrice(address _property, uint256 _value) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint(getCumulativePriceKey(_property), _value); } function getCumulativePrice(address _property) external view returns (uint256) { return eternalStorage().getUint(getCumulativePriceKey(_property)); } function getCumulativePriceKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_cumulativePrice", _property)); } // WithdrawalLimitTotal function setWithdrawalLimitTotal( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint( getWithdrawalLimitTotalKey(_property, _user), _value ); } function getWithdrawalLimitTotal(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint( getWithdrawalLimitTotalKey(_property, _user) ); } function getWithdrawalLimitTotalKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_withdrawalLimitTotal", _property, _user) ); } // WithdrawalLimitBalance function setWithdrawalLimitBalance( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint( getWithdrawalLimitBalanceKey(_property, _user), _value ); } function getWithdrawalLimitBalance(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint( getWithdrawalLimitBalanceKey(_property, _user) ); } function getWithdrawalLimitBalanceKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_withdrawalLimitBalance", _property, _user) ); } //LastWithdrawalPrice function setLastWithdrawalPrice( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint( getLastWithdrawalPriceKey(_property, _user), _value ); } function getLastWithdrawalPrice(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint( getLastWithdrawalPriceKey(_property, _user) ); } function getLastWithdrawalPriceKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_lastWithdrawalPrice", _property, _user) ); } //PendingWithdrawal function setPendingWithdrawal( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint( getPendingWithdrawalKey(_property, _user), _value ); } function getPendingWithdrawal(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint(getPendingWithdrawalKey(_property, _user)); } function getPendingWithdrawalKey(address _property, address _user) private pure returns (bytes32) { return keccak256(abi.encodePacked("_pendingWithdrawal", _property, _user)); } } contract Withdraw is Pausable, UsingConfig, UsingValidator { using SafeMath for uint256; using Decimals for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function withdraw(address _property) external { addressValidator().validateGroup(_property, config().propertyGroup()); uint256 value = _calculateWithdrawableAmount(_property, msg.sender); require(value != 0, "withdraw value is 0"); uint256 price = getStorage().getCumulativePrice(_property); getStorage().setLastWithdrawalPrice(_property, msg.sender, price); getStorage().setPendingWithdrawal(_property, msg.sender, 0); ERC20Mintable erc20 = ERC20Mintable(config().token()); require(erc20.mint(msg.sender, value), "dev mint failed"); } function beforeBalanceChange( address _property, address _from, address _to ) external { addressValidator().validateAddress(msg.sender, config().allocator()); uint256 price = getStorage().getCumulativePrice(_property); uint256 amountFrom = _calculateAmount(_property, _from); uint256 amountTo = _calculateAmount(_property, _to); getStorage().setLastWithdrawalPrice(_property, _from, price); getStorage().setLastWithdrawalPrice(_property, _to, price); uint256 pendFrom = getStorage().getPendingWithdrawal(_property, _from); uint256 pendTo = getStorage().getPendingWithdrawal(_property, _to); getStorage().setPendingWithdrawal( _property, _from, pendFrom.add(amountFrom) ); getStorage().setPendingWithdrawal(_property, _to, pendTo.add(amountTo)); uint256 totalLimit = getStorage().getWithdrawalLimitTotal( _property, _to ); uint256 total = getStorage().getRewardsAmount(_property); if (totalLimit != total) { getStorage().setWithdrawalLimitTotal(_property, _to, total); getStorage().setWithdrawalLimitBalance( _property, _to, ERC20(_property).balanceOf(_to) ); } } function increment(address _property, uint256 _allocationResult) external { addressValidator().validateAddress(msg.sender, config().allocator()); uint256 priceValue = _allocationResult.outOf( ERC20(_property).totalSupply() ); uint256 total = getStorage().getRewardsAmount(_property); getStorage().setRewardsAmount(_property, total.add(_allocationResult)); uint256 price = getStorage().getCumulativePrice(_property); getStorage().setCumulativePrice(_property, price.add(priceValue)); } function getRewardsAmount(address _property) external view returns (uint256) { return getStorage().getRewardsAmount(_property); } function _calculateAmount(address _property, address _user) private view returns (uint256) { uint256 _last = getStorage().getLastWithdrawalPrice(_property, _user); uint256 totalLimit = getStorage().getWithdrawalLimitTotal( _property, _user ); uint256 balanceLimit = getStorage().getWithdrawalLimitBalance( _property, _user ); uint256 price = getStorage().getCumulativePrice(_property); uint256 priceGap = price.sub(_last); uint256 balance = ERC20(_property).balanceOf(_user); uint256 total = getStorage().getRewardsAmount(_property); if (totalLimit == total) { balance = balanceLimit; } uint256 value = priceGap.mul(balance); return value.div(Decimals.basis()); } function calculateAmount(address _property, address _user) external view returns (uint256) { return _calculateAmount(_property, _user); } function _calculateWithdrawableAmount(address _property, address _user) private view returns (uint256) { uint256 _value = _calculateAmount(_property, _user); uint256 value = _value.add( getStorage().getPendingWithdrawal(_property, _user) ); return value; } function calculateWithdrawableAmount(address _property, address _user) external view returns (uint256) { return _calculateWithdrawableAmount(_property, _user); } function getStorage() private view returns (WithdrawStorage) { require(paused() == false, "You cannot use that"); return WithdrawStorage(config().withdrawStorage()); } } contract AllocatorStorage is UsingStorage, UsingConfig, UsingValidator { constructor(address _config) public UsingConfig(_config) UsingStorage() {} // Last Block Number function setLastBlockNumber(address _metrics, uint256 _blocks) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint(getLastBlockNumberKey(_metrics), _blocks); } function getLastBlockNumber(address _metrics) external view returns (uint256) { return eternalStorage().getUint(getLastBlockNumberKey(_metrics)); } function getLastBlockNumberKey(address _metrics) private pure returns (bytes32) { return keccak256(abi.encodePacked("_lastBlockNumber", _metrics)); } // Base Block Number function setBaseBlockNumber(uint256 _blockNumber) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint(getBaseBlockNumberKey(), _blockNumber); } function getBaseBlockNumber() external view returns (uint256) { return eternalStorage().getUint(getBaseBlockNumberKey()); } function getBaseBlockNumberKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_baseBlockNumber")); } // PendingIncrement function setPendingIncrement(address _metrics, bool value) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setBool(getPendingIncrementKey(_metrics), value); } function getPendingIncrement(address _metrics) external view returns (bool) { return eternalStorage().getBool(getPendingIncrementKey(_metrics)); } function getPendingIncrementKey(address _metrics) private pure returns (bytes32) { return keccak256(abi.encodePacked("_pendingIncrement", _metrics)); } // LastAssetValueEachMetrics function setLastAssetValueEachMetrics(address _metrics, uint256 value) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint( getLastAssetValueEachMetricsKey(_metrics), value ); } function getLastAssetValueEachMetrics(address _metrics) external view returns (uint256) { return eternalStorage().getUint(getLastAssetValueEachMetricsKey(_metrics)); } function getLastAssetValueEachMetricsKey(address _addr) private pure returns (bytes32) { return keccak256(abi.encodePacked("_lastAssetValueEachMetrics", _addr)); } // lastAssetValueEachMarketPerBlock function setLastAssetValueEachMarketPerBlock(address _market, uint256 value) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint( getLastAssetValueEachMarketPerBlockKey(_market), value ); } function getLastAssetValueEachMarketPerBlock(address _market) external view returns (uint256) { return eternalStorage().getUint( getLastAssetValueEachMarketPerBlockKey(_market) ); } function getLastAssetValueEachMarketPerBlockKey(address _addr) private pure returns (bytes32) { return keccak256( abi.encodePacked("_lastAssetValueEachMarketPerBlock", _addr) ); } // pendingLastBlockNumber function setPendingLastBlockNumber(address _metrics, uint256 value) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint(getPendingLastBlockNumberKey(_metrics), value); } function getPendingLastBlockNumber(address _metrics) external view returns (uint256) { return eternalStorage().getUint(getPendingLastBlockNumberKey(_metrics)); } function getPendingLastBlockNumberKey(address _addr) private pure returns (bytes32) { return keccak256(abi.encodePacked("_pendingLastBlockNumber", _addr)); } } contract Allocator is Pausable, UsingConfig, IAllocator, UsingValidator { using SafeMath for uint256; using Decimals for uint256; event BeforeAllocation( uint256 _blocks, uint256 _mint, uint256 _value, uint256 _marketValue, uint256 _assets, uint256 _totalAssets ); event AllocationResult( address _metrics, uint256 _value, address _market, address _property, uint256 _lockupValue, uint256 _result ); uint64 public constant basis = 1000000000000000000; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function allocate(address _metrics) external { addressValidator().validateGroup(_metrics, config().metricsGroup()); validateTargetPeriod(_metrics); address market = Metrics(_metrics).market(); getStorage().setPendingIncrement(_metrics, true); getStorage().setPendingLastBlockNumber(_metrics, block.number); IMarketBehavior(Market(market).behavior()).calculate( _metrics, getLastAllocationBlockNumber(_metrics), block.number ); } function calculatedCallback(address _metrics, uint256 _value) external { addressValidator().validateGroup(_metrics, config().metricsGroup()); Metrics metrics = Metrics(_metrics); Market market = Market(metrics.market()); require( msg.sender == market.behavior(), "don't call from other than market behavior" ); require( getStorage().getPendingIncrement(_metrics), "not asking for an indicator" ); uint256 totalAssets = MetricsGroup(config().metricsGroup()) .totalIssuedMetrics(); uint256 lockupValue = Lockup(config().lockup()).getPropertyValue( metrics.property() ); uint256 lastBlock = getStorage().getPendingLastBlockNumber(_metrics); uint256 blocks = lastBlock.sub(getLastAllocationBlockNumber(_metrics)); blocks = blocks > 0 ? blocks : 1; uint256 mint = Policy(config().policy()).rewards( Lockup(config().lockup()).getAllValue(), totalAssets ); uint256 value = ( Policy(config().policy()).assetValue(_value, lockupValue).mul(basis) ) .div(blocks); uint256 marketValue = getStorage() .getLastAssetValueEachMarketPerBlock(metrics.market()) .sub(getStorage().getLastAssetValueEachMetrics(_metrics)) .add(value); uint256 assets = market.issuedMetrics(); getStorage().setLastAssetValueEachMetrics(_metrics, value); getStorage().setLastAssetValueEachMarketPerBlock( metrics.market(), marketValue ); emit BeforeAllocation( blocks, mint, value, marketValue, assets, totalAssets ); uint256 result = allocation( blocks, mint, value, marketValue, assets, totalAssets ); emit AllocationResult( _metrics, _value, metrics.market(), metrics.property(), lockupValue, result ); increment(metrics.property(), result, lockupValue); getStorage().setPendingIncrement(_metrics, false); getStorage().setLastBlockNumber(_metrics, lastBlock); } function increment( address _property, uint256 _reward, uint256 _lockup ) private { uint256 holders = Policy(config().policy()).holdersShare( _reward, _lockup ); uint256 interest = _reward.sub(holders); Withdraw(config().withdraw()).increment(_property, holders); Lockup(config().lockup()).increment(_property, interest); } function beforeBalanceChange( address _property, address _from, address _to ) external { addressValidator().validateGroup(msg.sender, config().propertyGroup()); Withdraw(config().withdraw()).beforeBalanceChange( _property, _from, _to ); } function getRewardsAmount(address _property) external view returns (uint256) { return Withdraw(config().withdraw()).getRewardsAmount(_property); } function allocation( uint256 _blocks, uint256 _mint, uint256 _value, uint256 _marketValue, uint256 _assets, uint256 _totalAssets ) public pure returns (uint256) { uint256 aShare = _totalAssets > 0 ? _assets.outOf(_totalAssets) : Decimals.basis(); uint256 vShare = _marketValue > 0 ? _value.outOf(_marketValue) : Decimals.basis(); uint256 mint = _mint.mul(_blocks); return mint.mul(aShare).mul(vShare).div(Decimals.basis()).div( Decimals.basis() ); } function validateTargetPeriod(address _metrics) private { address property = Metrics(_metrics).property(); VoteTimes voteTimes = VoteTimes(config().voteTimes()); uint256 abstentionCount = voteTimes.getAbstentionTimes(property); uint256 notTargetPeriod = Policy(config().policy()).abstentionPenalty( abstentionCount ); if (notTargetPeriod == 0) { return; } uint256 blockNumber = getLastAllocationBlockNumber(_metrics); uint256 notTargetBlockNumber = blockNumber.add(notTargetPeriod); require( notTargetBlockNumber < block.number, "outside the target period" ); getStorage().setLastBlockNumber(_metrics, notTargetBlockNumber); voteTimes.resetVoteTimesByProperty(property); } function getLastAllocationBlockNumber(address _metrics) private returns (uint256) { uint256 blockNumber = getStorage().getLastBlockNumber(_metrics); uint256 baseBlockNumber = getStorage().getBaseBlockNumber(); if (baseBlockNumber == 0) { getStorage().setBaseBlockNumber(block.number); } uint256 lastAllocationBlockNumber = blockNumber > 0 ? blockNumber : getStorage().getBaseBlockNumber(); return lastAllocationBlockNumber; } function getStorage() private view returns (AllocatorStorage) { require(paused() == false, "You cannot use that"); return AllocatorStorage(config().allocatorStorage()); } } contract Property is ERC20, ERC20Detailed, UsingConfig, UsingValidator { using SafeMath for uint256; uint8 private constant _property_decimals = 18; uint256 private constant _supply = 10000000000000000000000000; address public author; constructor( address _config, address _own, string memory _name, string memory _symbol ) public UsingConfig(_config) ERC20Detailed(_name, _symbol, _property_decimals) { addressValidator().validateAddress( msg.sender, config().propertyFactory() ); author = _own; _mint(author, _supply); } function transfer(address _to, uint256 _value) public returns (bool) { addressValidator().validateIllegalAddress(_to); require(_value != 0, "illegal transfer value"); Allocator(config().allocator()).beforeBalanceChange( address(this), msg.sender, _to ); _transfer(msg.sender, _to, _value); return true; } function transferFrom( address _from, address _to, uint256 _value ) public returns (bool) { addressValidator().validateIllegalAddress(_from); addressValidator().validateIllegalAddress(_to); require(_value != 0, "illegal transfer value"); Allocator(config().allocator()).beforeBalanceChange( address(this), _from, _to ); _transfer(_from, _to, _value); uint256 allowanceAmount = allowance(_from, msg.sender); _approve( _from, msg.sender, allowanceAmount.sub( _value, "ERC20: transfer amount exceeds allowance" ) ); return true; } function withdraw(address _sender, uint256 _value) external { addressValidator().validateAddress(msg.sender, config().lockup()); ERC20 devToken = ERC20(config().token()); devToken.transfer(_sender, _value); } } contract LockupStorage is UsingConfig, UsingStorage, UsingValidator { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} //AllValue function setAllValue(uint256 _value) external { addressValidator().validateAddress(msg.sender, config().lockup()); bytes32 key = getAllValueKey(); eternalStorage().setUint(key, _value); } function getAllValue() external view returns (uint256) { bytes32 key = getAllValueKey(); return eternalStorage().getUint(key); } function getAllValueKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_allValue")); } //Value function setValue( address _property, address _sender, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().lockup()); bytes32 key = getValueKey(_property, _sender); eternalStorage().setUint(key, _value); } function getValue(address _property, address _sender) external view returns (uint256) { bytes32 key = getValueKey(_property, _sender); return eternalStorage().getUint(key); } function getValueKey(address _property, address _sender) private pure returns (bytes32) { return keccak256(abi.encodePacked("_value", _property, _sender)); } //PropertyValue function setPropertyValue(address _property, uint256 _value) external { addressValidator().validateAddress(msg.sender, config().lockup()); bytes32 key = getPropertyValueKey(_property); eternalStorage().setUint(key, _value); } function getPropertyValue(address _property) external view returns (uint256) { bytes32 key = getPropertyValueKey(_property); return eternalStorage().getUint(key); } function getPropertyValueKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_propertyValue", _property)); } //WithdrawalStatus function setWithdrawalStatus( address _property, address _from, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().lockup()); bytes32 key = getWithdrawalStatusKey(_property, _from); eternalStorage().setUint(key, _value); } function getWithdrawalStatus(address _property, address _from) external view returns (uint256) { bytes32 key = getWithdrawalStatusKey(_property, _from); return eternalStorage().getUint(key); } function getWithdrawalStatusKey(address _property, address _sender) private pure returns (bytes32) { return keccak256( abi.encodePacked("_withdrawalStatus", _property, _sender) ); } //InterestPrice function setInterestPrice(address _property, uint256 _value) external { addressValidator().validateAddress(msg.sender, config().lockup()); eternalStorage().setUint(getInterestPriceKey(_property), _value); } function getInterestPrice(address _property) external view returns (uint256) { return eternalStorage().getUint(getInterestPriceKey(_property)); } function getInterestPriceKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_interestTotals", _property)); } //LastInterestPrice function setLastInterestPrice( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().lockup()); eternalStorage().setUint( getLastInterestPriceKey(_property, _user), _value ); } function getLastInterestPrice(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint(getLastInterestPriceKey(_property, _user)); } function getLastInterestPriceKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_lastLastInterestPrice", _property, _user) ); } //PendingWithdrawal function setPendingInterestWithdrawal( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().lockup()); eternalStorage().setUint( getPendingInterestWithdrawalKey(_property, _user), _value ); } function getPendingInterestWithdrawal(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint( getPendingInterestWithdrawalKey(_property, _user) ); } function getPendingInterestWithdrawalKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_pendingInterestWithdrawal", _property, _user) ); } } contract Lockup is Pausable, UsingConfig, UsingValidator { using SafeMath for uint256; using Decimals for uint256; event Lockedup(address _from, address _property, uint256 _value); // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function lockup( address _from, address _property, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().token()); addressValidator().validateGroup(_property, config().propertyGroup()); require(_value != 0, "illegal lockup value"); bool isWaiting = getStorage().getWithdrawalStatus(_property, _from) != 0; require(isWaiting == false, "lockup is already canceled"); updatePendingInterestWithdrawal(_property, _from); addValue(_property, _from, _value); addPropertyValue(_property, _value); addAllValue(_value); getStorage().setLastInterestPrice( _property, _from, getStorage().getInterestPrice(_property) ); emit Lockedup(_from, _property, _value); } function cancel(address _property) external { addressValidator().validateGroup(_property, config().propertyGroup()); require(hasValue(_property, msg.sender), "dev token is not locked"); bool isWaiting = getStorage().getWithdrawalStatus( _property, msg.sender ) != 0; require(isWaiting == false, "lockup is already canceled"); uint256 blockNumber = Policy(config().policy()).lockUpBlocks(); blockNumber = blockNumber.add(block.number); getStorage().setWithdrawalStatus(_property, msg.sender, blockNumber); } function withdraw(address _property) external { addressValidator().validateGroup(_property, config().propertyGroup()); require(possible(_property, msg.sender), "waiting for release"); uint256 lockupedValue = getStorage().getValue(_property, msg.sender); require(lockupedValue != 0, "dev token is not locked"); updatePendingInterestWithdrawal(_property, msg.sender); Property(_property).withdraw(msg.sender, lockupedValue); getStorage().setValue(_property, msg.sender, 0); subPropertyValue(_property, lockupedValue); subAllValue(lockupedValue); getStorage().setWithdrawalStatus(_property, msg.sender, 0); } function increment(address _property, uint256 _interestResult) external { addressValidator().validateAddress(msg.sender, config().allocator()); uint256 priceValue = _interestResult.outOf( getStorage().getPropertyValue(_property) ); incrementInterest(_property, priceValue); } function _calculateInterestAmount(address _property, address _user) private view returns (uint256) { uint256 _last = getStorage().getLastInterestPrice(_property, _user); uint256 price = getStorage().getInterestPrice(_property); uint256 priceGap = price.sub(_last); uint256 lockupedValue = getStorage().getValue(_property, _user); uint256 value = priceGap.mul(lockupedValue); return value.div(Decimals.basis()); } function calculateInterestAmount(address _property, address _user) external view returns (uint256) { return _calculateInterestAmount(_property, _user); } function _calculateWithdrawableInterestAmount( address _property, address _user ) private view returns (uint256) { uint256 pending = getStorage().getPendingInterestWithdrawal( _property, _user ); return _calculateInterestAmount(_property, _user).add(pending); } function calculateWithdrawableInterestAmount( address _property, address _user ) external view returns (uint256) { return _calculateWithdrawableInterestAmount(_property, _user); } function withdrawInterest(address _property) external { addressValidator().validateGroup(_property, config().propertyGroup()); uint256 value = _calculateWithdrawableInterestAmount( _property, msg.sender ); require(value > 0, "your interest amount is 0"); getStorage().setLastInterestPrice( _property, msg.sender, getStorage().getInterestPrice(_property) ); getStorage().setPendingInterestWithdrawal(_property, msg.sender, 0); ERC20Mintable erc20 = ERC20Mintable(config().token()); require(erc20.mint(msg.sender, value), "dev mint failed"); } function getAllValue() external view returns (uint256) { return getStorage().getAllValue(); } function addAllValue(uint256 _value) private { uint256 value = getStorage().getAllValue(); value = value.add(_value); getStorage().setAllValue(value); } function subAllValue(uint256 _value) private { uint256 value = getStorage().getAllValue(); value = value.sub(_value); getStorage().setAllValue(value); } function getPropertyValue(address _property) external view returns (uint256) { return getStorage().getPropertyValue(_property); } function getValue(address _property, address _sender) external view returns (uint256) { return getStorage().getValue(_property, _sender); } function addValue( address _property, address _sender, uint256 _value ) private { uint256 value = getStorage().getValue(_property, _sender); value = value.add(_value); getStorage().setValue(_property, _sender, value); } function hasValue(address _property, address _sender) private view returns (bool) { uint256 value = getStorage().getValue(_property, _sender); return value != 0; } function addPropertyValue(address _property, uint256 _value) private { uint256 value = getStorage().getPropertyValue(_property); value = value.add(_value); getStorage().setPropertyValue(_property, value); } function subPropertyValue(address _property, uint256 _value) private { uint256 value = getStorage().getPropertyValue(_property); value = value.sub(_value); getStorage().setPropertyValue(_property, value); } function incrementInterest(address _property, uint256 _priceValue) private { uint256 price = getStorage().getInterestPrice(_property); getStorage().setInterestPrice(_property, price.add(_priceValue)); } function updatePendingInterestWithdrawal(address _property, address _user) private { uint256 pending = getStorage().getPendingInterestWithdrawal( _property, _user ); getStorage().setPendingInterestWithdrawal( _property, _user, _calculateInterestAmount(_property, _user).add(pending) ); } function possible(address _property, address _from) private view returns (bool) { // The behavior is changing because of a patch for DIP3. // uint256 blockNumber = getStorage().getWithdrawalStatus( // _property, // _from // ); // if (blockNumber == 0) { // return false; // } // return blockNumber <= block.number; uint256 blockNumber = getStorage().getWithdrawalStatus( _property, _from ); if (blockNumber == 0) { return false; } if (blockNumber <= block.number) { return true; } else { if (Policy(config().policy()).lockUpBlocks() == 1) { return true; } } return false; } function getStorage() private view returns (LockupStorage) { require(paused() == false, "You cannot use that"); return LockupStorage(config().lockupStorage()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_config","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_property","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Lockedup","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_property","type":"address"},{"internalType":"address","name":"_user","type":"address"}],"name":"calculateInterestAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_property","type":"address"},{"internalType":"address","name":"_user","type":"address"}],"name":"calculateWithdrawableInterestAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_property","type":"address"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"configAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getAllValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_property","type":"address"}],"name":"getPropertyValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_property","type":"address"},{"internalType":"address","name":"_sender","type":"address"}],"name":"getValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_property","type":"address"},{"internalType":"uint256","name":"_interestResult","type":"uint256"}],"name":"increment","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_property","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"lockup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_property","type":"address"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_property","type":"address"}],"name":"withdrawInterest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200325338038062003253833981810160405260208110156200003757600080fd5b50518062000060620000516001600160e01b03620000d816565b6001600160e01b03620000dc16565b600180546001600160a01b03909216610100026001600160a81b0319909216919091179055604051620000939062000224565b604051809103906000f080158015620000b0573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169190911790555062000232565b3390565b620000f78160006200012e60201b620027701790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200014382826001600160e01b03620001bb16565b1562000196576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002045760405162461bcd60e51b8152600401808060200182810382526022815260200180620032316022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6106398062002bf883390190565b6129b680620002426000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80637654f7ab116100a2578063c875356a11610071578063c875356a14610278578063d6c31871146102a6578063e35e8cf1146102ca578063f9c514e414610300578063fd1ac3d81461032e5761010b565b80637654f7ab1461021c57806382dc1ec4146102245780638456cb591461024a578063af45f322146102525761010b565b806351cff8d9116100de57806351cff8d9146101a657806355fac3be146101cc5780635c975abb1461020c5780636ef8d66d146102145761010b565b80632414f2f1146101105780633f4ba83a1461013e57806346fbf68e146101465780634c33fe9414610180575b600080fd5b61013c6004803603604081101561012657600080fd5b506001600160a01b038135169060200135610354565b005b61013c6104e9565b61016c6004803603602081101561015c57600080fd5b50356001600160a01b03166105d2565b604080519115158252519081900360200190f35b61013c6004803603602081101561019657600080fd5b50356001600160a01b03166105ea565b61013c600480360360208110156101bc57600080fd5b50356001600160a01b0316610973565b6101fa600480360360408110156101e257600080fd5b506001600160a01b0381358116916020013516610cf5565b60408051918252519081900360200190f35b61016c610d85565b61013c610d8e565b6101fa610da0565b61013c6004803603602081101561023a57600080fd5b50356001600160a01b0316610e13565b61013c610e65565b61013c6004803603602081101561026857600080fd5b50356001600160a01b0316610f2b565b6101fa6004803603604081101561028e57600080fd5b506001600160a01b038135811691602001351661132b565b6102ae61133e565b604080516001600160a01b039092168252519081900360200190f35b61013c600480360360608110156102e057600080fd5b506001600160a01b03813581169160208101359091169060400135611352565b6101fa6004803603604081101561031657600080fd5b506001600160a01b03813581169160200135166117d7565b6101fa6004803603602081101561034457600080fd5b50356001600160a01b03166117e3565b61035c611874565b6001600160a01b03166349616d793361037361133e565b6001600160a01b031663aa5dcecc6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103ab57600080fd5b505afa1580156103bf573d6000803e3d6000fd5b505050506040513d60208110156103d557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b15801561042557600080fd5b505afa158015610439573d6000803e3d6000fd5b5050505060006104d861044a611883565b6001600160a01b031663fd1ac3d8856040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561049f57600080fd5b505afa1580156104b3573d6000803e3d6000fd5b505050506040513d60208110156104c957600080fd5b5051839063ffffffff61191516565b90506104e4838261196a565b505050565b6104f96104f4611a6d565b6105d2565b6105345760405162461bcd60e51b81526004018080602001828103825260308152602001806128ee6030913960400191505060405180910390fd5b60015460ff16610582576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6001805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6105b5611a6d565b604080516001600160a01b039092168252519081900360200190a1565b60006105e4818363ffffffff611a7116565b92915050565b6105f2611874565b6001600160a01b031663d16ff4708261060961133e565b6001600160a01b031663ffeed7a96040518163ffffffff1660e01b815260040160206040518083038186803b15801561064157600080fd5b505afa158015610655573d6000803e3d6000fd5b505050506040513d602081101561066b57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b1580156106bb57600080fd5b505afa1580156106cf573d6000803e3d6000fd5b505050506106dd8133611ad8565b610728576040805162461bcd60e51b815260206004820152601760248201527619195d881d1bdad95b881a5cc81b9bdd081b1bd8dad959604a1b604482015290519081900360640190fd5b6000610732611883565b6040805163355277ad60e11b81526001600160a01b03858116600483015233602483015291519290911691636aa4ef5a91604480820192602092909190829003018186803b15801561078357600080fd5b505afa158015610797573d6000803e3d6000fd5b505050506040513d60208110156107ad57600080fd5b50511580159150610805576040805162461bcd60e51b815260206004820152601a60248201527f6c6f636b757020697320616c72656164792063616e63656c6564000000000000604482015290519081900360640190fd5b600061080f61133e565b6001600160a01b0316630505c8c96040518163ffffffff1660e01b815260040160206040518083038186803b15801561084757600080fd5b505afa15801561085b573d6000803e3d6000fd5b505050506040513d602081101561087157600080fd5b5051604080516392a3f61760e01b815290516001600160a01b03909216916392a3f61791600480820192602092909190829003018186803b1580156108b557600080fd5b505afa1580156108c9573d6000803e3d6000fd5b505050506040513d60208110156108df57600080fd5b505190506108f3814363ffffffff611b6c16565b90506108fd611883565b6040805163b84c419160e01b81526001600160a01b038681166004830152336024830152604482018590529151929091169163b84c41919160648082019260009290919082900301818387803b15801561095657600080fd5b505af115801561096a573d6000803e3d6000fd5b50505050505050565b61097b611874565b6001600160a01b031663d16ff4708261099261133e565b6001600160a01b031663ffeed7a96040518163ffffffff1660e01b815260040160206040518083038186803b1580156109ca57600080fd5b505afa1580156109de573d6000803e3d6000fd5b505050506040513d60208110156109f457600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b158015610a4457600080fd5b505afa158015610a58573d6000803e3d6000fd5b50505050610a668133611bc6565b610aad576040805162461bcd60e51b815260206004820152601360248201527277616974696e6720666f722072656c6561736560681b604482015290519081900360640190fd5b6000610ab7611883565b60408051632afd61df60e11b81526001600160a01b038581166004830152336024830152915192909116916355fac3be91604480820192602092909190829003018186803b158015610b0857600080fd5b505afa158015610b1c573d6000803e3d6000fd5b505050506040513d6020811015610b3257600080fd5b5051905080610b82576040805162461bcd60e51b815260206004820152601760248201527619195d881d1bdad95b881a5cc81b9bdd081b1bd8dad959604a1b604482015290519081900360640190fd5b610b8c8233611d68565b6040805163f3fef3a360e01b81523360048201526024810183905290516001600160a01b0384169163f3fef3a391604480830192600092919082900301818387803b158015610bda57600080fd5b505af1158015610bee573d6000803e3d6000fd5b50505050610bfa611883565b604080516301840e8160e41b81526001600160a01b0385811660048301523360248301526000604483018190529251931692631840e8109260648084019391929182900301818387803b158015610c5057600080fd5b505af1158015610c64573d6000803e3d6000fd5b50505050610c728282611e8d565b610c7b81611f93565b610c83611883565b6040805163b84c419160e01b81526001600160a01b038581166004830152336024830152600060448301819052925193169263b84c41919260648084019391929182900301818387803b158015610cd957600080fd5b505af1158015610ced573d6000803e3d6000fd5b505050505050565b6000610cff611883565b60408051632afd61df60e11b81526001600160a01b0386811660048301528581166024830152915192909116916355fac3be91604480820192602092909190829003018186803b158015610d5257600080fd5b505afa158015610d66573d6000803e3d6000fd5b505050506040513d6020811015610d7c57600080fd5b50519392505050565b60015460ff1690565b610d9e610d99611a6d565b612062565b565b6000610daa611883565b6001600160a01b0316637654f7ab6040518163ffffffff1660e01b815260040160206040518083038186803b158015610de257600080fd5b505afa158015610df6573d6000803e3d6000fd5b505050506040513d6020811015610e0c57600080fd5b5051905090565b610e1e6104f4611a6d565b610e595760405162461bcd60e51b81526004018080602001828103825260308152602001806128ee6030913960400191505060405180910390fd5b610e62816120aa565b50565b610e706104f4611a6d565b610eab5760405162461bcd60e51b81526004018080602001828103825260308152602001806128ee6030913960400191505060405180910390fd5b60015460ff1615610ef6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001805460ff1916811790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586105b5611a6d565b610f33611874565b6001600160a01b031663d16ff47082610f4a61133e565b6001600160a01b031663ffeed7a96040518163ffffffff1660e01b815260040160206040518083038186803b158015610f8257600080fd5b505afa158015610f96573d6000803e3d6000fd5b505050506040513d6020811015610fac57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b158015610ffc57600080fd5b505afa158015611010573d6000803e3d6000fd5b50505050600061102082336120f2565b905060008111611077576040805162461bcd60e51b815260206004820152601960248201527f796f757220696e74657265737420616d6f756e74206973203000000000000000604482015290519081900360640190fd5b61107f611883565b6001600160a01b03166303ae35488333611097611883565b6001600160a01b031663ee02cbb6876040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156110ec57600080fd5b505afa158015611100573d6000803e3d6000fd5b505050506040513d602081101561111657600080fd5b5051604080516001600160e01b031960e087901b1681526001600160a01b03948516600482015292909316602483015260448201529051606480830192600092919082900301818387803b15801561116d57600080fd5b505af1158015611181573d6000803e3d6000fd5b5050505061118d611883565b60408051633e2ce4a360e21b81526001600160a01b038581166004830152336024830152600060448301819052925193169263f8b3928c9260648084019391929182900301818387803b1580156111e357600080fd5b505af11580156111f7573d6000803e3d6000fd5b50505050600061120561133e565b6001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561123d57600080fd5b505afa158015611251573d6000803e3d6000fd5b505050506040513d602081101561126757600080fd5b5051604080516340c10f1960e01b81523360048201526024810185905290519192506001600160a01b038316916340c10f19916044808201926020929091908290030181600087803b1580156112bc57600080fd5b505af11580156112d0573d6000803e3d6000fd5b505050506040513d60208110156112e657600080fd5b50516104e4576040805162461bcd60e51b815260206004820152600f60248201526e19195d881b5a5b9d0819985a5b1959608a1b604482015290519081900360640190fd5b60006113378383612188565b9392505050565b60015461010090046001600160a01b031690565b61135a611874565b6001600160a01b03166349616d793361137161133e565b6001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156113a957600080fd5b505afa1580156113bd573d6000803e3d6000fd5b505050506040513d60208110156113d357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b15801561142357600080fd5b505afa158015611437573d6000803e3d6000fd5b50505050611443611874565b6001600160a01b031663d16ff4708361145a61133e565b6001600160a01b031663ffeed7a96040518163ffffffff1660e01b815260040160206040518083038186803b15801561149257600080fd5b505afa1580156114a6573d6000803e3d6000fd5b505050506040513d60208110156114bc57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b15801561150c57600080fd5b505afa158015611520573d6000803e3d6000fd5b505050508060001415611571576040805162461bcd60e51b8152602060048201526014602482015273696c6c6567616c206c6f636b75702076616c756560601b604482015290519081900360640190fd5b600061157b611883565b6040805163355277ad60e11b81526001600160a01b038681166004830152878116602483015291519290911691636aa4ef5a91604480820192602092909190829003018186803b1580156115ce57600080fd5b505afa1580156115e2573d6000803e3d6000fd5b505050506040513d60208110156115f857600080fd5b50511580159150611650576040805162461bcd60e51b815260206004820152601a60248201527f6c6f636b757020697320616c72656164792063616e63656c6564000000000000604482015290519081900360640190fd5b61165a8385611d68565b6116658385846123f1565b61166f838361250f565b611678826125ac565b611680611883565b6001600160a01b03166303ae35488486611698611883565b6001600160a01b031663ee02cbb6886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156116ed57600080fd5b505afa158015611701573d6000803e3d6000fd5b505050506040513d602081101561171757600080fd5b5051604080516001600160e01b031960e087901b1681526001600160a01b03948516600482015292909316602483015260448201529051606480830192600092919082900301818387803b15801561176e57600080fd5b505af1158015611782573d6000803e3d6000fd5b5050604080516001600160a01b0380891682528716602082015280820186905290517f71601c75cd9722fdbd6d57dbb30980d4a4bd6169ba3d456dc18b7f878629d7bf9350908190036060019150a150505050565b600061133783836120f2565b60006117ed611883565b6001600160a01b031663fd1ac3d8836040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561184257600080fd5b505afa158015611856573d6000803e3d6000fd5b505050506040513d602081101561186c57600080fd5b505192915050565b6002546001600160a01b031690565b600061188d610d85565b156118d5576040805162461bcd60e51b8152602060048201526013602482015272165bdd4818d85b9b9bdd081d5cd9481d1a185d606a1b604482015290519081900360640190fd5b6118dd61133e565b6001600160a01b031663fd6adc196040518163ffffffff1660e01b815260040160206040518083038186803b158015610de257600080fd5b600082611924575060006105e4565b600061193e84670de0b6b3a764000063ffffffff61262c16565b9050828110156119525760009150506105e4565b611962818463ffffffff61268516565b949350505050565b6000611974611883565b6001600160a01b031663ee02cbb6846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156119c957600080fd5b505afa1580156119dd573d6000803e3d6000fd5b505050506040513d60208110156119f357600080fd5b505190506119ff611883565b6001600160a01b031663c277446984611a1e848663ffffffff611b6c16565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561095657600080fd5b3390565b60006001600160a01b038216611ab85760405162461bcd60e51b81526004018080602001828103825260228152602001806129606022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b600080611ae3611883565b60408051632afd61df60e11b81526001600160a01b0387811660048301528681166024830152915192909116916355fac3be91604480820192602092909190829003018186803b158015611b3657600080fd5b505afa158015611b4a573d6000803e3d6000fd5b505050506040513d6020811015611b6057600080fd5b50511515949350505050565b600082820183811015611337576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080611bd1611883565b6040805163355277ad60e11b81526001600160a01b038781166004830152868116602483015291519290911691636aa4ef5a91604480820192602092909190829003018186803b158015611c2457600080fd5b505afa158015611c38573d6000803e3d6000fd5b505050506040513d6020811015611c4e57600080fd5b5051905080611c615760009150506105e4565b438111611c725760019150506105e4565b611c7a61133e565b6001600160a01b0316630505c8c96040518163ffffffff1660e01b815260040160206040518083038186803b158015611cb257600080fd5b505afa158015611cc6573d6000803e3d6000fd5b505050506040513d6020811015611cdc57600080fd5b5051604080516392a3f61760e01b815290516001600160a01b03909216916392a3f61791600480820192602092909190829003018186803b158015611d2057600080fd5b505afa158015611d34573d6000803e3d6000fd5b505050506040513d6020811015611d4a57600080fd5b505160011415611d5e5760019150506105e4565b5060009392505050565b6000611d72611883565b60408051637a0fda8360e11b81526001600160a01b03868116600483015285811660248301529151929091169163f41fb50691604480820192602092909190829003018186803b158015611dc557600080fd5b505afa158015611dd9573d6000803e3d6000fd5b505050506040513d6020811015611def57600080fd5b50519050611dfb611883565b6001600160a01b031663f8b3928c8484611e2585611e198989612188565b9063ffffffff611b6c16565b6040518463ffffffff1660e01b815260040180846001600160a01b03166001600160a01b03168152602001836001600160a01b03166001600160a01b031681526020018281526020019350505050600060405180830381600087803b15801561095657600080fd5b6000611e97611883565b6001600160a01b031663fd1ac3d8846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015611eec57600080fd5b505afa158015611f00573d6000803e3d6000fd5b505050506040513d6020811015611f1657600080fd5b50519050611f2a818363ffffffff6126c716565b9050611f34611883565b6001600160a01b0316638891cab384836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561095657600080fd5b6000611f9d611883565b6001600160a01b0316637654f7ab6040518163ffffffff1660e01b815260040160206040518083038186803b158015611fd557600080fd5b505afa158015611fe9573d6000803e3d6000fd5b505050506040513d6020811015611fff57600080fd5b50519050612013818363ffffffff6126c716565b905061201d611883565b6001600160a01b0316631e4d6e07826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610cd957600080fd5b61207360008263ffffffff61270916565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6120bb60008263ffffffff61277016565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000806120fd611883565b60408051637a0fda8360e11b81526001600160a01b03878116600483015286811660248301529151929091169163f41fb50691604480820192602092909190829003018186803b15801561215057600080fd5b505afa158015612164573d6000803e3d6000fd5b505050506040513d602081101561217a57600080fd5b5051905061196281611e1986865b600080612193611883565b604080516390a4677560e01b81526001600160a01b0387811660048301528681166024830152915192909116916390a4677591604480820192602092909190829003018186803b1580156121e657600080fd5b505afa1580156121fa573d6000803e3d6000fd5b505050506040513d602081101561221057600080fd5b50519050600061221e611883565b6001600160a01b031663ee02cbb6866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561227357600080fd5b505afa158015612287573d6000803e3d6000fd5b505050506040513d602081101561229d57600080fd5b5051905060006122b3828463ffffffff6126c716565b905060006122bf611883565b60408051632afd61df60e11b81526001600160a01b038a811660048301528981166024830152915192909116916355fac3be91604480820192602092909190829003018186803b15801561231257600080fd5b505afa158015612326573d6000803e3d6000fd5b505050506040513d602081101561233c57600080fd5b505190506000612352838363ffffffff61262c16565b90506123e57372f06a3ee08d10c35c674b3a0c25cfe5ea2e17cd63f385cecb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561239b57600080fd5b505af41580156123af573d6000803e3d6000fd5b505050506040513d60208110156123c557600080fd5b505182906effffffffffffffffffffffffffffff1663ffffffff61268516565b98975050505050505050565b60006123fb611883565b60408051632afd61df60e11b81526001600160a01b0387811660048301528681166024830152915192909116916355fac3be91604480820192602092909190829003018186803b15801561244e57600080fd5b505afa158015612462573d6000803e3d6000fd5b505050506040513d602081101561247857600080fd5b5051905061248c818363ffffffff611b6c16565b9050612496611883565b604080516301840e8160e41b81526001600160a01b03878116600483015286811660248301526044820185905291519290911691631840e8109160648082019260009290919082900301818387803b1580156124f157600080fd5b505af1158015612505573d6000803e3d6000fd5b5050505050505050565b6000612519611883565b6001600160a01b031663fd1ac3d8846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561256e57600080fd5b505afa158015612582573d6000803e3d6000fd5b505050506040513d602081101561259857600080fd5b50519050611f2a818363ffffffff611b6c16565b60006125b6611883565b6001600160a01b0316637654f7ab6040518163ffffffff1660e01b815260040160206040518083038186803b1580156125ee57600080fd5b505afa158015612602573d6000803e3d6000fd5b505050506040513d602081101561261857600080fd5b50519050612013818363ffffffff611b6c16565b60008261263b575060006105e4565b8282028284828161264857fe5b04146113375760405162461bcd60e51b815260040180806020018281038252602181526020018061293f6021913960400191505060405180910390fd5b600061133783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127f1565b600061133783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612893565b6127138282611a71565b61274e5760405162461bcd60e51b815260040180806020018281038252602181526020018061291e6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61277a8282611a71565b156127cc576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000818361287d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561284257818101518382015260200161282a565b50505050905090810190601f16801561286f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161288957fe5b0495945050505050565b600081848411156128e55760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561284257818101518382015260200161282a565b50505090039056fe506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373a265627a7a72315820d9caa494c2e6ccb67a1d452ecef831a1e64b2a847574ca03fd79532209c5277d64736f6c63430005110032608060405234801561001057600080fd5b50610619806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c806349616d791461005c5780636dd893b91461008c578063a2192963146100c4578063b292b549146100fc578063d16ff47014610122575b600080fd5b61008a6004803603604081101561007257600080fd5b506001600160a01b0381358116916020013516610150565b005b61008a600480360360608110156100a257600080fd5b506001600160a01b038135811691602081013582169160409091013516610223565b61008a600480360360608110156100da57600080fd5b506001600160a01b0381358116916020810135821691604090910135166102d9565b61008a6004803603602081101561011257600080fd5b50356001600160a01b0316610461565b61008a6004803603604081101561013857600080fd5b506001600160a01b03813581169160200135166104e8565b806001600160a01b0316826001600160a01b031614604051806040016040528060178152602001767468697320697320696c6c6567616c206164647265737360481b8152509061021e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050565b816001600160a01b0316836001600160a01b031614156102425761021e565b806001600160a01b0316836001600160a01b031614604051806040016040528060178152602001767468697320697320696c6c6567616c206164647265737360481b815250906102d35760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156101e35781810151838201526020016101cb565b50505050565b816001600160a01b0316639e0cc3c4846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561032f57600080fd5b505afa158015610343573d6000803e3d6000fd5b505050506040513d602081101561035957600080fd5b5051156103655761021e565b806001600160a01b0316639e0cc3c4846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156103bb57600080fd5b505afa1580156103cf573d6000803e3d6000fd5b505050506040513d60208110156103e557600080fd5b50516040805180820190915260178152767468697320697320696c6c6567616c206164647265737360481b6020820152906102d35760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156101e35781810151838201526020016101cb565b6040805180820190915260178152767468697320697320696c6c6567616c206164647265737360481b60208201526001600160a01b0382166104e45760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156101e35781810151838201526020016101cb565b5050565b806001600160a01b0316639e0cc3c4836040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561053e57600080fd5b505afa158015610552573d6000803e3d6000fd5b505050506040513d602081101561056857600080fd5b50516040805180820190915260178152767468697320697320696c6c6567616c206164647265737360481b60208201529061021e5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156101e35781810151838201526020016101cb56fea265627a7a72315820fce4cfd9366e26aa9717636601cd80f4034ab865dca3e82655f6843a63adef4664736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f20616464726573730000000000000000000000001d415aa39d647834786eb9b5a333a50e9935b796
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80637654f7ab116100a2578063c875356a11610071578063c875356a14610278578063d6c31871146102a6578063e35e8cf1146102ca578063f9c514e414610300578063fd1ac3d81461032e5761010b565b80637654f7ab1461021c57806382dc1ec4146102245780638456cb591461024a578063af45f322146102525761010b565b806351cff8d9116100de57806351cff8d9146101a657806355fac3be146101cc5780635c975abb1461020c5780636ef8d66d146102145761010b565b80632414f2f1146101105780633f4ba83a1461013e57806346fbf68e146101465780634c33fe9414610180575b600080fd5b61013c6004803603604081101561012657600080fd5b506001600160a01b038135169060200135610354565b005b61013c6104e9565b61016c6004803603602081101561015c57600080fd5b50356001600160a01b03166105d2565b604080519115158252519081900360200190f35b61013c6004803603602081101561019657600080fd5b50356001600160a01b03166105ea565b61013c600480360360208110156101bc57600080fd5b50356001600160a01b0316610973565b6101fa600480360360408110156101e257600080fd5b506001600160a01b0381358116916020013516610cf5565b60408051918252519081900360200190f35b61016c610d85565b61013c610d8e565b6101fa610da0565b61013c6004803603602081101561023a57600080fd5b50356001600160a01b0316610e13565b61013c610e65565b61013c6004803603602081101561026857600080fd5b50356001600160a01b0316610f2b565b6101fa6004803603604081101561028e57600080fd5b506001600160a01b038135811691602001351661132b565b6102ae61133e565b604080516001600160a01b039092168252519081900360200190f35b61013c600480360360608110156102e057600080fd5b506001600160a01b03813581169160208101359091169060400135611352565b6101fa6004803603604081101561031657600080fd5b506001600160a01b03813581169160200135166117d7565b6101fa6004803603602081101561034457600080fd5b50356001600160a01b03166117e3565b61035c611874565b6001600160a01b03166349616d793361037361133e565b6001600160a01b031663aa5dcecc6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103ab57600080fd5b505afa1580156103bf573d6000803e3d6000fd5b505050506040513d60208110156103d557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b15801561042557600080fd5b505afa158015610439573d6000803e3d6000fd5b5050505060006104d861044a611883565b6001600160a01b031663fd1ac3d8856040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561049f57600080fd5b505afa1580156104b3573d6000803e3d6000fd5b505050506040513d60208110156104c957600080fd5b5051839063ffffffff61191516565b90506104e4838261196a565b505050565b6104f96104f4611a6d565b6105d2565b6105345760405162461bcd60e51b81526004018080602001828103825260308152602001806128ee6030913960400191505060405180910390fd5b60015460ff16610582576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6001805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6105b5611a6d565b604080516001600160a01b039092168252519081900360200190a1565b60006105e4818363ffffffff611a7116565b92915050565b6105f2611874565b6001600160a01b031663d16ff4708261060961133e565b6001600160a01b031663ffeed7a96040518163ffffffff1660e01b815260040160206040518083038186803b15801561064157600080fd5b505afa158015610655573d6000803e3d6000fd5b505050506040513d602081101561066b57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b1580156106bb57600080fd5b505afa1580156106cf573d6000803e3d6000fd5b505050506106dd8133611ad8565b610728576040805162461bcd60e51b815260206004820152601760248201527619195d881d1bdad95b881a5cc81b9bdd081b1bd8dad959604a1b604482015290519081900360640190fd5b6000610732611883565b6040805163355277ad60e11b81526001600160a01b03858116600483015233602483015291519290911691636aa4ef5a91604480820192602092909190829003018186803b15801561078357600080fd5b505afa158015610797573d6000803e3d6000fd5b505050506040513d60208110156107ad57600080fd5b50511580159150610805576040805162461bcd60e51b815260206004820152601a60248201527f6c6f636b757020697320616c72656164792063616e63656c6564000000000000604482015290519081900360640190fd5b600061080f61133e565b6001600160a01b0316630505c8c96040518163ffffffff1660e01b815260040160206040518083038186803b15801561084757600080fd5b505afa15801561085b573d6000803e3d6000fd5b505050506040513d602081101561087157600080fd5b5051604080516392a3f61760e01b815290516001600160a01b03909216916392a3f61791600480820192602092909190829003018186803b1580156108b557600080fd5b505afa1580156108c9573d6000803e3d6000fd5b505050506040513d60208110156108df57600080fd5b505190506108f3814363ffffffff611b6c16565b90506108fd611883565b6040805163b84c419160e01b81526001600160a01b038681166004830152336024830152604482018590529151929091169163b84c41919160648082019260009290919082900301818387803b15801561095657600080fd5b505af115801561096a573d6000803e3d6000fd5b50505050505050565b61097b611874565b6001600160a01b031663d16ff4708261099261133e565b6001600160a01b031663ffeed7a96040518163ffffffff1660e01b815260040160206040518083038186803b1580156109ca57600080fd5b505afa1580156109de573d6000803e3d6000fd5b505050506040513d60208110156109f457600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b158015610a4457600080fd5b505afa158015610a58573d6000803e3d6000fd5b50505050610a668133611bc6565b610aad576040805162461bcd60e51b815260206004820152601360248201527277616974696e6720666f722072656c6561736560681b604482015290519081900360640190fd5b6000610ab7611883565b60408051632afd61df60e11b81526001600160a01b038581166004830152336024830152915192909116916355fac3be91604480820192602092909190829003018186803b158015610b0857600080fd5b505afa158015610b1c573d6000803e3d6000fd5b505050506040513d6020811015610b3257600080fd5b5051905080610b82576040805162461bcd60e51b815260206004820152601760248201527619195d881d1bdad95b881a5cc81b9bdd081b1bd8dad959604a1b604482015290519081900360640190fd5b610b8c8233611d68565b6040805163f3fef3a360e01b81523360048201526024810183905290516001600160a01b0384169163f3fef3a391604480830192600092919082900301818387803b158015610bda57600080fd5b505af1158015610bee573d6000803e3d6000fd5b50505050610bfa611883565b604080516301840e8160e41b81526001600160a01b0385811660048301523360248301526000604483018190529251931692631840e8109260648084019391929182900301818387803b158015610c5057600080fd5b505af1158015610c64573d6000803e3d6000fd5b50505050610c728282611e8d565b610c7b81611f93565b610c83611883565b6040805163b84c419160e01b81526001600160a01b038581166004830152336024830152600060448301819052925193169263b84c41919260648084019391929182900301818387803b158015610cd957600080fd5b505af1158015610ced573d6000803e3d6000fd5b505050505050565b6000610cff611883565b60408051632afd61df60e11b81526001600160a01b0386811660048301528581166024830152915192909116916355fac3be91604480820192602092909190829003018186803b158015610d5257600080fd5b505afa158015610d66573d6000803e3d6000fd5b505050506040513d6020811015610d7c57600080fd5b50519392505050565b60015460ff1690565b610d9e610d99611a6d565b612062565b565b6000610daa611883565b6001600160a01b0316637654f7ab6040518163ffffffff1660e01b815260040160206040518083038186803b158015610de257600080fd5b505afa158015610df6573d6000803e3d6000fd5b505050506040513d6020811015610e0c57600080fd5b5051905090565b610e1e6104f4611a6d565b610e595760405162461bcd60e51b81526004018080602001828103825260308152602001806128ee6030913960400191505060405180910390fd5b610e62816120aa565b50565b610e706104f4611a6d565b610eab5760405162461bcd60e51b81526004018080602001828103825260308152602001806128ee6030913960400191505060405180910390fd5b60015460ff1615610ef6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001805460ff1916811790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586105b5611a6d565b610f33611874565b6001600160a01b031663d16ff47082610f4a61133e565b6001600160a01b031663ffeed7a96040518163ffffffff1660e01b815260040160206040518083038186803b158015610f8257600080fd5b505afa158015610f96573d6000803e3d6000fd5b505050506040513d6020811015610fac57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b158015610ffc57600080fd5b505afa158015611010573d6000803e3d6000fd5b50505050600061102082336120f2565b905060008111611077576040805162461bcd60e51b815260206004820152601960248201527f796f757220696e74657265737420616d6f756e74206973203000000000000000604482015290519081900360640190fd5b61107f611883565b6001600160a01b03166303ae35488333611097611883565b6001600160a01b031663ee02cbb6876040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156110ec57600080fd5b505afa158015611100573d6000803e3d6000fd5b505050506040513d602081101561111657600080fd5b5051604080516001600160e01b031960e087901b1681526001600160a01b03948516600482015292909316602483015260448201529051606480830192600092919082900301818387803b15801561116d57600080fd5b505af1158015611181573d6000803e3d6000fd5b5050505061118d611883565b60408051633e2ce4a360e21b81526001600160a01b038581166004830152336024830152600060448301819052925193169263f8b3928c9260648084019391929182900301818387803b1580156111e357600080fd5b505af11580156111f7573d6000803e3d6000fd5b50505050600061120561133e565b6001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561123d57600080fd5b505afa158015611251573d6000803e3d6000fd5b505050506040513d602081101561126757600080fd5b5051604080516340c10f1960e01b81523360048201526024810185905290519192506001600160a01b038316916340c10f19916044808201926020929091908290030181600087803b1580156112bc57600080fd5b505af11580156112d0573d6000803e3d6000fd5b505050506040513d60208110156112e657600080fd5b50516104e4576040805162461bcd60e51b815260206004820152600f60248201526e19195d881b5a5b9d0819985a5b1959608a1b604482015290519081900360640190fd5b60006113378383612188565b9392505050565b60015461010090046001600160a01b031690565b61135a611874565b6001600160a01b03166349616d793361137161133e565b6001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156113a957600080fd5b505afa1580156113bd573d6000803e3d6000fd5b505050506040513d60208110156113d357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b15801561142357600080fd5b505afa158015611437573d6000803e3d6000fd5b50505050611443611874565b6001600160a01b031663d16ff4708361145a61133e565b6001600160a01b031663ffeed7a96040518163ffffffff1660e01b815260040160206040518083038186803b15801561149257600080fd5b505afa1580156114a6573d6000803e3d6000fd5b505050506040513d60208110156114bc57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b15801561150c57600080fd5b505afa158015611520573d6000803e3d6000fd5b505050508060001415611571576040805162461bcd60e51b8152602060048201526014602482015273696c6c6567616c206c6f636b75702076616c756560601b604482015290519081900360640190fd5b600061157b611883565b6040805163355277ad60e11b81526001600160a01b038681166004830152878116602483015291519290911691636aa4ef5a91604480820192602092909190829003018186803b1580156115ce57600080fd5b505afa1580156115e2573d6000803e3d6000fd5b505050506040513d60208110156115f857600080fd5b50511580159150611650576040805162461bcd60e51b815260206004820152601a60248201527f6c6f636b757020697320616c72656164792063616e63656c6564000000000000604482015290519081900360640190fd5b61165a8385611d68565b6116658385846123f1565b61166f838361250f565b611678826125ac565b611680611883565b6001600160a01b03166303ae35488486611698611883565b6001600160a01b031663ee02cbb6886040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156116ed57600080fd5b505afa158015611701573d6000803e3d6000fd5b505050506040513d602081101561171757600080fd5b5051604080516001600160e01b031960e087901b1681526001600160a01b03948516600482015292909316602483015260448201529051606480830192600092919082900301818387803b15801561176e57600080fd5b505af1158015611782573d6000803e3d6000fd5b5050604080516001600160a01b0380891682528716602082015280820186905290517f71601c75cd9722fdbd6d57dbb30980d4a4bd6169ba3d456dc18b7f878629d7bf9350908190036060019150a150505050565b600061133783836120f2565b60006117ed611883565b6001600160a01b031663fd1ac3d8836040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561184257600080fd5b505afa158015611856573d6000803e3d6000fd5b505050506040513d602081101561186c57600080fd5b505192915050565b6002546001600160a01b031690565b600061188d610d85565b156118d5576040805162461bcd60e51b8152602060048201526013602482015272165bdd4818d85b9b9bdd081d5cd9481d1a185d606a1b604482015290519081900360640190fd5b6118dd61133e565b6001600160a01b031663fd6adc196040518163ffffffff1660e01b815260040160206040518083038186803b158015610de257600080fd5b600082611924575060006105e4565b600061193e84670de0b6b3a764000063ffffffff61262c16565b9050828110156119525760009150506105e4565b611962818463ffffffff61268516565b949350505050565b6000611974611883565b6001600160a01b031663ee02cbb6846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156119c957600080fd5b505afa1580156119dd573d6000803e3d6000fd5b505050506040513d60208110156119f357600080fd5b505190506119ff611883565b6001600160a01b031663c277446984611a1e848663ffffffff611b6c16565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561095657600080fd5b3390565b60006001600160a01b038216611ab85760405162461bcd60e51b81526004018080602001828103825260228152602001806129606022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b600080611ae3611883565b60408051632afd61df60e11b81526001600160a01b0387811660048301528681166024830152915192909116916355fac3be91604480820192602092909190829003018186803b158015611b3657600080fd5b505afa158015611b4a573d6000803e3d6000fd5b505050506040513d6020811015611b6057600080fd5b50511515949350505050565b600082820183811015611337576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600080611bd1611883565b6040805163355277ad60e11b81526001600160a01b038781166004830152868116602483015291519290911691636aa4ef5a91604480820192602092909190829003018186803b158015611c2457600080fd5b505afa158015611c38573d6000803e3d6000fd5b505050506040513d6020811015611c4e57600080fd5b5051905080611c615760009150506105e4565b438111611c725760019150506105e4565b611c7a61133e565b6001600160a01b0316630505c8c96040518163ffffffff1660e01b815260040160206040518083038186803b158015611cb257600080fd5b505afa158015611cc6573d6000803e3d6000fd5b505050506040513d6020811015611cdc57600080fd5b5051604080516392a3f61760e01b815290516001600160a01b03909216916392a3f61791600480820192602092909190829003018186803b158015611d2057600080fd5b505afa158015611d34573d6000803e3d6000fd5b505050506040513d6020811015611d4a57600080fd5b505160011415611d5e5760019150506105e4565b5060009392505050565b6000611d72611883565b60408051637a0fda8360e11b81526001600160a01b03868116600483015285811660248301529151929091169163f41fb50691604480820192602092909190829003018186803b158015611dc557600080fd5b505afa158015611dd9573d6000803e3d6000fd5b505050506040513d6020811015611def57600080fd5b50519050611dfb611883565b6001600160a01b031663f8b3928c8484611e2585611e198989612188565b9063ffffffff611b6c16565b6040518463ffffffff1660e01b815260040180846001600160a01b03166001600160a01b03168152602001836001600160a01b03166001600160a01b031681526020018281526020019350505050600060405180830381600087803b15801561095657600080fd5b6000611e97611883565b6001600160a01b031663fd1ac3d8846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015611eec57600080fd5b505afa158015611f00573d6000803e3d6000fd5b505050506040513d6020811015611f1657600080fd5b50519050611f2a818363ffffffff6126c716565b9050611f34611883565b6001600160a01b0316638891cab384836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561095657600080fd5b6000611f9d611883565b6001600160a01b0316637654f7ab6040518163ffffffff1660e01b815260040160206040518083038186803b158015611fd557600080fd5b505afa158015611fe9573d6000803e3d6000fd5b505050506040513d6020811015611fff57600080fd5b50519050612013818363ffffffff6126c716565b905061201d611883565b6001600160a01b0316631e4d6e07826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610cd957600080fd5b61207360008263ffffffff61270916565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6120bb60008263ffffffff61277016565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000806120fd611883565b60408051637a0fda8360e11b81526001600160a01b03878116600483015286811660248301529151929091169163f41fb50691604480820192602092909190829003018186803b15801561215057600080fd5b505afa158015612164573d6000803e3d6000fd5b505050506040513d602081101561217a57600080fd5b5051905061196281611e1986865b600080612193611883565b604080516390a4677560e01b81526001600160a01b0387811660048301528681166024830152915192909116916390a4677591604480820192602092909190829003018186803b1580156121e657600080fd5b505afa1580156121fa573d6000803e3d6000fd5b505050506040513d602081101561221057600080fd5b50519050600061221e611883565b6001600160a01b031663ee02cbb6866040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561227357600080fd5b505afa158015612287573d6000803e3d6000fd5b505050506040513d602081101561229d57600080fd5b5051905060006122b3828463ffffffff6126c716565b905060006122bf611883565b60408051632afd61df60e11b81526001600160a01b038a811660048301528981166024830152915192909116916355fac3be91604480820192602092909190829003018186803b15801561231257600080fd5b505afa158015612326573d6000803e3d6000fd5b505050506040513d602081101561233c57600080fd5b505190506000612352838363ffffffff61262c16565b90506123e57372f06a3ee08d10c35c674b3a0c25cfe5ea2e17cd63f385cecb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561239b57600080fd5b505af41580156123af573d6000803e3d6000fd5b505050506040513d60208110156123c557600080fd5b505182906effffffffffffffffffffffffffffff1663ffffffff61268516565b98975050505050505050565b60006123fb611883565b60408051632afd61df60e11b81526001600160a01b0387811660048301528681166024830152915192909116916355fac3be91604480820192602092909190829003018186803b15801561244e57600080fd5b505afa158015612462573d6000803e3d6000fd5b505050506040513d602081101561247857600080fd5b5051905061248c818363ffffffff611b6c16565b9050612496611883565b604080516301840e8160e41b81526001600160a01b03878116600483015286811660248301526044820185905291519290911691631840e8109160648082019260009290919082900301818387803b1580156124f157600080fd5b505af1158015612505573d6000803e3d6000fd5b5050505050505050565b6000612519611883565b6001600160a01b031663fd1ac3d8846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561256e57600080fd5b505afa158015612582573d6000803e3d6000fd5b505050506040513d602081101561259857600080fd5b50519050611f2a818363ffffffff611b6c16565b60006125b6611883565b6001600160a01b0316637654f7ab6040518163ffffffff1660e01b815260040160206040518083038186803b1580156125ee57600080fd5b505afa158015612602573d6000803e3d6000fd5b505050506040513d602081101561261857600080fd5b50519050612013818363ffffffff611b6c16565b60008261263b575060006105e4565b8282028284828161264857fe5b04146113375760405162461bcd60e51b815260040180806020018281038252602181526020018061293f6021913960400191505060405180910390fd5b600061133783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127f1565b600061133783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612893565b6127138282611a71565b61274e5760405162461bcd60e51b815260040180806020018281038252602181526020018061291e6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b61277a8282611a71565b156127cc576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000818361287d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561284257818101518382015260200161282a565b50505050905090810190601f16801561286f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161288957fe5b0495945050505050565b600081848411156128e55760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561284257818101518382015260200161282a565b50505090039056fe506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373a265627a7a72315820d9caa494c2e6ccb67a1d452ecef831a1e64b2a847574ca03fd79532209c5277d64736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001d415aa39d647834786eb9b5a333a50e9935b796
-----Decoded View---------------
Arg [0] : _config (address): 0x1D415aa39D647834786EB9B5a333A50e9935b796
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001d415aa39d647834786eb9b5a333a50e9935b796
Deployed Bytecode Sourcemap
86468:7272:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86468:7272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88711:295;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;88711:295:0;;;;;;;;:::i;:::-;;21591:105;;;:::i;19395:100::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19395:100:0;-1:-1:-1;;;;;19395:100:0;;:::i;:::-;;;;;;;;;;;;;;;;;;87520:542;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87520:542:0;-1:-1:-1;;;;;87520:542:0;;:::i;88067:639::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88067:639:0;-1:-1:-1;;;;;88067:639:0;;:::i;91309:155::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;91309:155:0;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20900:69;;;:::i;19588:70::-;;;:::i;90720:98::-;;;:::i;19500:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19500:83:0;-1:-1:-1;;;;;19500:83:0;;:::i;21405:103::-;;;:::i;90123:592::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90123:592:0;-1:-1:-1;;;;;90123:592:0;;:::i;89459:169::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;89459:169:0;;;;;;;;;;:::i;30654:90::-;;;:::i;:::-;;;;-1:-1:-1;;;;;30654:90:0;;;;;;;;;;;;;;86769:746;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;86769:746:0;;;;;;;;;;;;;;;;;:::i;89926:192::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;89926:192:0;;;;;;;;;;:::i;91159:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91159:145:0;-1:-1:-1;;;;;91159:145:0;;:::i;88711:295::-;88788:18;:16;:18::i;:::-;-1:-1:-1;;;;;88788:34:0;;88823:10;88835:8;:6;:8::i;:::-;-1:-1:-1;;;;;88835:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88835:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88835:20:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88835:20:0;88788:68;;;-1:-1:-1;;;;;;88788:68:0;;;;;;;-1:-1:-1;;;;;88788:68:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;88788:68:0;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;88788:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88788:68:0;;;;88863:18;88884:72;88911:12;:10;:12::i;:::-;-1:-1:-1;;;;;88911:29:0;;88941:9;88911:40;;;;;;;;;;;;;-1:-1:-1;;;;;88911:40:0;-1:-1:-1;;;;;88911:40:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88911:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88911:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88911:40:0;88884:15;;:72;:21;:72;:::i;:::-;88863:93;;88961:40;88979:9;88990:10;88961:17;:40::i;:::-;88711:295;;;:::o;21591:105::-;19296:22;19305:12;:10;:12::i;:::-;19296:8;:22::i;:::-;19283:96;;;;-1:-1:-1;;;19283:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21282:7;;;;21274:40;;;;;-1:-1:-1;;;21274:40:0;;;;;;;;;;;;-1:-1:-1;;;21274:40:0;;;;;;;;;;;;;;;21644:7;:15;;-1:-1:-1;;21644:15:0;;;21669:22;21678:12;:10;:12::i;:::-;21669:22;;;-1:-1:-1;;;;;21669:22:0;;;;;;;;;;;;;;21591:105::o;19395:100::-;19451:4;19469:21;19451:4;19482:7;19469:21;:12;:21;:::i;:::-;19462:28;19395:100;-1:-1:-1;;19395:100:0:o;87520:542::-;87569:18;:16;:18::i;:::-;-1:-1:-1;;;;;87569:32:0;;87602:9;87613:8;:6;:8::i;:::-;-1:-1:-1;;;;;87613:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87613:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87613:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87613:24:0;87569:69;;;-1:-1:-1;;;;;;87569:69:0;;;;;;;-1:-1:-1;;;;;87569:69:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;87569:69:0;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;87569:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87569:69:0;;;;87653:31;87662:9;87673:10;87653:8;:31::i;:::-;87645:67;;;;;-1:-1:-1;;;87645:67:0;;;;;;;;;;;;-1:-1:-1;;;87645:67:0;;;;;;;;;;;;;;;87717:14;87734:12;:10;:12::i;:::-;:68;;;-1:-1:-1;;;87734:68:0;;-1:-1:-1;;;;;87734:68:0;;;;;;;87787:10;87734:68;;;;;;:32;;;;;;;:68;;;;;;;;;;;;;;;:32;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;87734:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87734:68:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87734:68:0;:73;;;;-1:-1:-1;87812:57:0;;;;;-1:-1:-1;;;87812:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;87874:19;87903:8;:6;:8::i;:::-;-1:-1:-1;;;;;87903:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87903:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87903:17:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87903:17:0;87896:40;;;-1:-1:-1;;;87896:40:0;;;;-1:-1:-1;;;;;87896:38:0;;;;;;:40;;;;;87903:17;;87896:40;;;;;;;;:38;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;87896:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87896:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87896:40:0;;-1:-1:-1;87955:29:0;87896:40;87971:12;87955:29;:15;:29;:::i;:::-;87941:43;;87989:12;:10;:12::i;:::-;:68;;;-1:-1:-1;;;87989:68:0;;-1:-1:-1;;;;;87989:68:0;;;;;;;88033:10;87989:68;;;;;;;;;;;;:32;;;;;;;:68;;;;;-1:-1:-1;;87989:68:0;;;;;;;;-1:-1:-1;87989:32:0;:68;;;5:2:-1;;;;30:1;27;20:12;5:2;87989:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87989:68:0;;;;87520:542;;;:::o;88067:639::-;88118:18;:16;:18::i;:::-;-1:-1:-1;;;;;88118:32:0;;88151:9;88162:8;:6;:8::i;:::-;-1:-1:-1;;;;;88162:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88162:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88162:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88162:24:0;88118:69;;;-1:-1:-1;;;;;;88118:69:0;;;;;;;-1:-1:-1;;;;;88118:69:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;88118:69:0;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;88118:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88118:69:0;;;;88202:31;88211:9;88222:10;88202:8;:31::i;:::-;88194:63;;;;;-1:-1:-1;;;88194:63:0;;;;;;;;;;;;-1:-1:-1;;;88194:63:0;;;;;;;;;;;;;;;88262:21;88286:12;:10;:12::i;:::-;:44;;;-1:-1:-1;;;88286:44:0;;-1:-1:-1;;;;;88286:44:0;;;;;;;88319:10;88286:44;;;;;;:21;;;;;;;:44;;;;;;;;;;;;;;;:21;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;88286:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88286:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88286:44:0;;-1:-1:-1;88343:18:0;88335:54;;;;;-1:-1:-1;;;88335:54:0;;;;;;;;;;;;-1:-1:-1;;;88335:54:0;;;;;;;;;;;;;;;88394;88426:9;88437:10;88394:31;:54::i;:::-;88453:55;;;-1:-1:-1;;;88453:55:0;;88482:10;88453:55;;;;;;;;;;;;-1:-1:-1;;;;;88453:28:0;;;;;:55;;;;;-1:-1:-1;;88453:55:0;;;;;;;-1:-1:-1;88453:28:0;:55;;;5:2:-1;;;;30:1;27;20:12;5:2;88453:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88453:55:0;;;;88513:12;:10;:12::i;:::-;:47;;;-1:-1:-1;;;88513:47:0;;-1:-1:-1;;;;;88513:47:0;;;;;;;88546:10;88513:47;;;;88558:1;88513:47;;;;;;;;:21;;;;;:47;;;;;88558:1;;88513:47;;;;;;88558:1;88513:21;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;88513:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88513:47:0;;;;88565:42;88582:9;88593:13;88565:16;:42::i;:::-;88612:26;88624:13;88612:11;:26::i;:::-;88643:12;:10;:12::i;:::-;:58;;;-1:-1:-1;;;88643:58:0;;-1:-1:-1;;;;;88643:58:0;;;;;;;88687:10;88643:58;;;;88699:1;88643:58;;;;;;;;:32;;;;;:58;;;;;88699:1;;88643:58;;;;;;88699:1;88643:32;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;88643:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88643:58:0;;;;88067:639;;:::o;91309:155::-;91395:7;91418:12;:10;:12::i;:::-;:41;;;-1:-1:-1;;;91418:41:0;;-1:-1:-1;;;;;91418:41:0;;;;;;;;;;;;;;;;:21;;;;;;;:41;;;;;;;;;;;;;;;:21;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;91418:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91418:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91418:41:0;;91309:155;-1:-1:-1;;;91309:155:0:o;20900:69::-;20957:7;;;;20900:69;:::o;19588:70::-;19626:27;19640:12;:10;:12::i;:::-;19626:13;:27::i;:::-;19588:70::o;90720:98::-;90766:7;90787:12;:10;:12::i;:::-;-1:-1:-1;;;;;90787:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90787:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90787:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90787:26:0;;-1:-1:-1;90720:98:0;:::o;19500:83::-;19296:22;19305:12;:10;:12::i;19296:22::-;19283:96;;;;-1:-1:-1;;;19283:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19559:19;19570:7;19559:10;:19::i;:::-;19500:83;:::o;21405:103::-;19296:22;19305:12;:10;:12::i;19296:22::-;19283:96;;;;-1:-1:-1;;;19283:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21110:7;;;;21109:8;21101:37;;;;;-1:-1:-1;;;21101:37:0;;;;;;;;;;;;-1:-1:-1;;;21101:37:0;;;;;;;;;;;;;;;21469:4;21459:14;;-1:-1:-1;;21459:14:0;;;;;21483:20;21490:12;:10;:12::i;90123:592::-;90182:18;:16;:18::i;:::-;-1:-1:-1;;;;;90182:32:0;;90215:9;90226:8;:6;:8::i;:::-;-1:-1:-1;;;;;90226:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90226:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90226:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90226:24:0;90182:69;;;-1:-1:-1;;;;;;90182:69:0;;;;;;;-1:-1:-1;;;;;90182:69:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;90182:69:0;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;90182:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90182:69:0;;;;90258:13;90274:72;90316:9;90331:10;90274:36;:72::i;:::-;90258:88;;90367:1;90359:5;:9;90351:47;;;;;-1:-1:-1;;;90351:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;90403:12;:10;:12::i;:::-;-1:-1:-1;;;;;90403:33:0;;90442:9;90457:10;90473:12;:10;:12::i;:::-;-1:-1:-1;;;;;90473:29:0;;90503:9;90473:40;;;;;;;;;;;;;-1:-1:-1;;;;;90473:40:0;-1:-1:-1;;;;;90473:40:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90473:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90473:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90473:40:0;90403:115;;;-1:-1:-1;;;;;;90403:115:0;;;;;;;-1:-1:-1;;;;;90403:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;90403:115:0;;;;;;;-1:-1:-1;90403:115:0;;;;5:2:-1;;;;30:1;27;20:12;5:2;90403:115:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90403:115:0;;;;90523:12;:10;:12::i;:::-;:67;;;-1:-1:-1;;;90523:67:0;;-1:-1:-1;;;;;90523:67:0;;;;;;;90576:10;90523:67;;;;90588:1;90523:67;;;;;;;;:41;;;;;:67;;;;;90588:1;;90523:67;;;;;;90588:1;90523:41;:67;;;5:2:-1;;;;30:1;27;20:12;5:2;90523:67:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90523:67:0;;;;90595:19;90631:8;:6;:8::i;:::-;-1:-1:-1;;;;;90631:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90631:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90631:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90631:16:0;90661:29;;;-1:-1:-1;;;90661:29:0;;90672:10;90661:29;;;;;;;;;;;;90631:16;;-1:-1:-1;;;;;;90661:10:0;;;;;:29;;;;;90631:16;;90661:29;;;;;;;;-1:-1:-1;90661:10:0;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;90661:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90661:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90661:29:0;90653:57;;;;;-1:-1:-1;;;90653:57:0;;;;;;;;;;;;-1:-1:-1;;;90653:57:0;;;;;;;;;;;;;;89459:169;89558:7;89581:42;89606:9;89617:5;89581:24;:42::i;:::-;89574:49;89459:169;-1:-1:-1;;;89459:169:0:o;30654:90::-;30731:7;;;;;-1:-1:-1;;;;;30731:7:0;;30654:90::o;86769:746::-;86862:18;:16;:18::i;:::-;-1:-1:-1;;;;;86862:34:0;;86897:10;86909:8;:6;:8::i;:::-;-1:-1:-1;;;;;86909:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86909:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;86909:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86909:16:0;86862:64;;;-1:-1:-1;;;;;;86862:64:0;;;;;;;-1:-1:-1;;;;;86862:64:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;86862:64:0;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;86862:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;86862:64:0;;;;86931:18;:16;:18::i;:::-;-1:-1:-1;;;;;86931:32:0;;86964:9;86975:8;:6;:8::i;:::-;-1:-1:-1;;;;;86975:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;86975:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;86975:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;86975:24:0;86931:69;;;-1:-1:-1;;;;;;86931:69:0;;;;;;;-1:-1:-1;;;;;86931:69:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;86931:69:0;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;86931:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;86931:69:0;;;;87013:6;87023:1;87013:11;;87005:44;;;;;-1:-1:-1;;;87005:44:0;;;;;;;;;;;;-1:-1:-1;;;87005:44:0;;;;;;;;;;;;;;;87056:14;87073:12;:10;:12::i;:::-;:50;;;-1:-1:-1;;;87073:50:0;;-1:-1:-1;;;;;87073:50:0;;;;;;;;;;;;;;;;:32;;;;;;;:50;;;;;;;;;;;;;;;:32;:50;;;5:2:-1;;;;30:1;27;20:12;5:2;87073:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87073:50:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87073:50:0;:59;;;;-1:-1:-1;87137:57:0;;;;;-1:-1:-1;;;87137:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;87199:49;87231:9;87242:5;87199:31;:49::i;:::-;87253:34;87262:9;87273:5;87280:6;87253:8;:34::i;:::-;87292:35;87309:9;87320:6;87292:16;:35::i;:::-;87332:19;87344:6;87332:11;:19::i;:::-;87356:12;:10;:12::i;:::-;-1:-1:-1;;;;;87356:33:0;;87395:9;87410:5;87421:12;:10;:12::i;:::-;-1:-1:-1;;;;;87421:29:0;;87451:9;87421:40;;;;;;;;;;;;;-1:-1:-1;;;;;87421:40:0;-1:-1:-1;;;;;87421:40:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;87421:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;87421:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;87421:40:0;87356:110;;;-1:-1:-1;;;;;;87356:110:0;;;;;;;-1:-1:-1;;;;;87356:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;87356:110:0;;;;;;;-1:-1:-1;87356:110:0;;;;5:2:-1;;;;30:1;27;20:12;5:2;87356:110:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;87476:34:0;;;-1:-1:-1;;;;;87476:34:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87476:34:0;;;;;;;-1:-1:-1;87476:34:0;86769:746;;;;:::o;89926:192::-;90038:7;90059:54;90096:9;90107:5;90059:36;:54::i;91159:145::-;91236:7;91259:12;:10;:12::i;:::-;-1:-1:-1;;;;;91259:29:0;;91289:9;91259:40;;;;;;;;;;;;;-1:-1:-1;;;;;91259:40:0;-1:-1:-1;;;;;91259:40:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91259:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91259:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91259:40:0;;91159:145;-1:-1:-1;;91159:145:0:o;23486:96::-;23567:10;;-1:-1:-1;;;;;23567:10:0;23486:96;:::o;93568:169::-;93612:13;93640:8;:6;:8::i;:::-;:17;93632:49;;;;;-1:-1:-1;;;93632:49:0;;;;;;;;;;;;-1:-1:-1;;;93632:49:0;;;;;;;;;;;;;;;93707:8;:6;:8::i;:::-;-1:-1:-1;;;;;93707:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;21817:225:0;21888:14;21915:7;21911:33;;-1:-1:-1;21937:1:0;21930:8;;21911:33;21948:9;21960:18;:2;21792:19;21960:18;:6;:18;:::i;:::-;21948:30;;21991:2;21987:1;:6;21983:32;;;22008:1;22001:8;;;;;21983:32;22027:9;:1;22033:2;22027:9;:5;:9;:::i;:::-;22019:18;21817:225;-1:-1:-1;;;;21817:225:0:o;92346:210::-;92426:13;92442:12;:10;:12::i;:::-;-1:-1:-1;;;;;92442:29:0;;92472:9;92442:40;;;;;;;;;;;;;-1:-1:-1;;;;;92442:40:0;-1:-1:-1;;;;;92442:40:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;92442:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92442:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92442:40:0;;-1:-1:-1;92487:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;92487:29:0;;92517:9;92528:22;:5;92538:11;92528:22;:9;:22;:::i;:::-;92487:64;;;;;;;;;;;;;-1:-1:-1;;;;;92487:64:0;-1:-1:-1;;;;;92487:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;791:89:0;865:10;791:89;:::o;17343:203::-;17415:4;-1:-1:-1;;;;;17440:21:0;;17432:68;;;;-1:-1:-1;;;17432:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17518:20:0;:11;:20;;;;;;;;;;;;;;;17343:203::o;91715:182::-;91800:4;91813:13;91829:12;:10;:12::i;:::-;:41;;;-1:-1:-1;;;91829:41:0;;-1:-1:-1;;;;;91829:41:0;;;;;;;;;;;;;;;;:21;;;;;;;:41;;;;;;;;;;;;;;;:21;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;91829:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91829:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91829:41:0;91882:10;;;91715:182;-1:-1:-1;;;;91715:182:0:o;4556:160::-;4614:7;4640:5;;;4658:6;;;;4650:46;;;;;-1:-1:-1;;;4650:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;92892:671;92975:4;93253:19;93275:12;:10;:12::i;:::-;:63;;;-1:-1:-1;;;93275:63:0;;-1:-1:-1;;;;;93275:63:0;;;;;;;;;;;;;;;;:32;;;;;;;:63;;;;;;;;;;;;;;;:32;:63;;;5:2:-1;;;;30:1;27;20:12;5:2;93275:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93275:63:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;93275:63:0;;-1:-1:-1;93347:16:0;93343:46;;93378:5;93371:12;;;;;93343:46;93412:12;93397:11;:27;93393:149;;93439:4;93432:11;;;;;93393:149;93472:8;:6;:8::i;:::-;-1:-1:-1;;;;;93472:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;93472:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93472:17:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;93472:17:0;93465:40;;;-1:-1:-1;;;93465:40:0;;;;-1:-1:-1;;;;;93465:38:0;;;;;;:40;;;;;93472:17;;93465:40;;;;;;;;:38;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;93465:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93465:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;93465:40:0;93509:1;93465:45;93461:76;;;93526:4;93519:11;;;;;93461:76;-1:-1:-1;93553:5:0;;92892:671;-1:-1:-1;;;92892:671:0:o;92561:326::-;92654:15;92672:12;:10;:12::i;:::-;:72;;;-1:-1:-1;;;92672:72:0;;-1:-1:-1;;;;;92672:72:0;;;;;;;;;;;;;;;;:41;;;;;;;:72;;;;;;;;;;;;;;;:41;:72;;;5:2:-1;;;;30:1;27;20:12;5:2;92672:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92672:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92672:72:0;;-1:-1:-1;92749:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;92749:41:0;;92796:9;92811:5;92822:55;92869:7;92822:42;92847:9;92858:5;92822:24;:42::i;:::-;:46;:55;:46;:55;:::i;:::-;92749:133;;;;;;;;;;;;;-1:-1:-1;;;;;92749:133:0;-1:-1:-1;;;;;92749:133:0;;;;;;-1:-1:-1;;;;;92749:133:0;-1:-1:-1;;;;;92749:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;92124:217:0;92198:13;92214:12;:10;:12::i;:::-;-1:-1:-1;;;;;92214:29:0;;92244:9;92214:40;;;;;;;;;;;;;-1:-1:-1;;;;;92214:40:0;-1:-1:-1;;;;;92214:40:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;92214:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92214:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92214:40:0;;-1:-1:-1;92267:17:0;92214:40;92277:6;92267:17;:9;:17;:::i;:::-;92259:25;;92289:12;:10;:12::i;:::-;-1:-1:-1;;;;;92289:29:0;;92319:9;92330:5;92289:47;;;;;;;;;;;;;-1:-1:-1;;;;;92289:47:0;-1:-1:-1;;;;;92289:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;90991:163:0;91041:13;91057:12;:10;:12::i;:::-;-1:-1:-1;;;;;91057:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91057:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91057:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91057:26:0;;-1:-1:-1;91096:17:0;91057:26;91106:6;91096:17;:9;:17;:::i;:::-;91088:25;;91118:12;:10;:12::i;:::-;-1:-1:-1;;;;;91118:24:0;;91143:5;91118:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;19775:115:0;19829:24;:8;19845:7;19829:24;:15;:24;:::i;:::-;19863:22;;-1:-1:-1;;;;;19863:22:0;;;;;;;;19775:115;:::o;19663:107::-;19714:21;:8;19727:7;19714:21;:12;:21;:::i;:::-;19745:20;;-1:-1:-1;;;;;19745:20:0;;;;;;;;19663:107;:::o;89633:288::-;89745:7;89759:15;89777:12;:10;:12::i;:::-;:72;;;-1:-1:-1;;;89777:72:0;;-1:-1:-1;;;;;89777:72:0;;;;;;;;;;;;;;;;:41;;;;;;;:72;;;;;;;;;;;;;;;:41;:72;;;5:2:-1;;;;30:1;27;20:12;5:2;89777:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89777:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89777:72:0;;-1:-1:-1;89861:55:0;89777:72;89861:42;89886:9;89897:5;89011:443;89110:7;89126:13;89142:12;:10;:12::i;:::-;:51;;;-1:-1:-1;;;89142:51:0;;-1:-1:-1;;;;;89142:51:0;;;;;;;;;;;;;;;;:33;;;;;;;:51;;;;;;;;;;;;;;;:33;:51;;;5:2:-1;;;;30:1;27;20:12;5:2;89142:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89142:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89142:51:0;;-1:-1:-1;89198:13:0;89214:12;:10;:12::i;:::-;-1:-1:-1;;;;;89214:29:0;;89244:9;89214:40;;;;;;;;;;;;;-1:-1:-1;;;;;89214:40:0;-1:-1:-1;;;;;89214:40:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;89214:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89214:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89214:40:0;;-1:-1:-1;89259:16:0;89278;89214:40;89288:5;89278:16;:9;:16;:::i;:::-;89259:35;;89299:21;89323:12;:10;:12::i;:::-;:39;;;-1:-1:-1;;;89323:39:0;;-1:-1:-1;;;;;89323:39:0;;;;;;;;;;;;;;;;:21;;;;;;;:39;;;;;;;;;;;;;;;:21;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;89323:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89323:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89323:39:0;;-1:-1:-1;89367:13:0;89383:27;:8;89323:39;89383:27;:12;:27;:::i;:::-;89367:43;;89422:27;89432:8;:14;:16;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;89432:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89432:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89432:16:0;89422:5;;:27;;;:9;:27;:::i;:::-;89415:34;89011:443;-1:-1:-1;;;;;;;;89011:443:0:o;91469:241::-;91565:13;91581:12;:10;:12::i;:::-;:41;;;-1:-1:-1;;;91581:41:0;;-1:-1:-1;;;;;91581:41:0;;;;;;;;;;;;;;;;:21;;;;;;;:41;;;;;;;;;;;;;;;:21;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;91581:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91581:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91581:41:0;;-1:-1:-1;91635:17:0;91581:41;91645:6;91635:17;:9;:17;:::i;:::-;91627:25;;91657:12;:10;:12::i;:::-;:48;;;-1:-1:-1;;;91657:48:0;;-1:-1:-1;;;;;91657:48:0;;;;;;;;;;;;;;;;;;;;;;:21;;;;;;;:48;;;;;-1:-1:-1;;91657:48:0;;;;;;;;-1:-1:-1;91657:21:0;:48;;;5:2:-1;;;;30:1;27;20:12;5:2;91657:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91657:48:0;;;;91469:241;;;;:::o;91902:217::-;91976:13;91992:12;:10;:12::i;:::-;-1:-1:-1;;;;;91992:29:0;;92022:9;91992:40;;;;;;;;;;;;;-1:-1:-1;;;;;91992:40:0;-1:-1:-1;;;;;91992:40:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91992:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91992:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91992:40:0;;-1:-1:-1;92045:17:0;91992:40;92055:6;92045:17;:9;:17;:::i;90823:163::-;90873:13;90889:12;:10;:12::i;:::-;-1:-1:-1;;;;;90889:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90889:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90889:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90889:26:0;;-1:-1:-1;90928:17:0;90889:26;90938:6;90928:17;:9;:17;:::i;5794:411::-;5852:7;6073:6;6069:32;;-1:-1:-1;6094:1:0;6087:8;;6069:32;6119:5;;;6123:1;6119;:5;:1;6137:5;;;;;:10;6129:56;;;;-1:-1:-1;;;6129:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6637:123;6695:7;6716:39;6720:1;6723;6716:39;;;;;;;;;;;;;;;;;:3;:39::i;4961:127::-;5019:7;5040:43;5044:1;5047;5040:43;;;;;;;;;;;;;;;;;:3;:43::i;17065:183::-;17145:18;17149:4;17155:7;17145:3;:18::i;:::-;17137:64;;;;-1:-1:-1;;;17137:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17212:20:0;17235:5;17212:20;;;;;;;;;;;:28;;-1:-1:-1;;17212:28:0;;;17065:183::o;16807:178::-;16885:18;16889:4;16895:7;16885:3;:18::i;:::-;16884:19;16876:63;;;;;-1:-1:-1;;;16876:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16950:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16950:27:0;16973:4;16950:27;;;16807:178::o;7248:325::-;7347:7;7437:12;7430:5;7422:28;;;;-1:-1:-1;;;7422:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7422:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7455:9;7471:1;7467;:5;;;;;;;7248:325;-1:-1:-1;;;;;7248:325:0:o;5389:184::-;5488:7;5518:12;5510:6;;;;5502:29;;;;-1:-1:-1;;;5502:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5502:29:0;-1:-1:-1;;;5548:5:0;;;5389:184::o
Swarm Source
bzzr://fce4cfd9366e26aa9717636601cd80f4034ab865dca3e82655f6843a63adef46
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.