Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 10420356 | 1585 days ago | IN | 0 ETH | 0.12411977 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AskoToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-08 */ pragma solidity 0.5.16; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } /* * @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 is Initializable { // 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 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 Initializable, 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")); } uint256[50] private ______gap; } /** * @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 Initializable, 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); } uint256[50] private ______gap; } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is Initializable, 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. */ function initialize(string memory name, string memory symbol, uint8 decimals) public initializer { _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; } uint256[50] private ______gap; } /** * @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 Initializable, Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; function initialize(address sender) public initializer { if (!isMinter(sender)) { _addMinter(sender); } } 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); } uint256[50] private ______gap; } /** * @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 Initializable, ERC20, MinterRole { function initialize(address sender) public initializer { MinterRole.initialize(sender); } /** * @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; } uint256[50] private ______gap; } contract PauserRole is Initializable, Context { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; function initialize(address sender) public initializer { if (!isPauser(sender)) { _addPauser(sender); } } 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); } uint256[50] private ______gap; } /** * @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 Initializable, 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. */ function initialize(address sender) public initializer { PauserRole.initialize(sender); _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()); } uint256[50] private ______gap; } /** * @title Pausable token * @dev ERC20 with pausable transfers and allowances. * * Useful if you want to stop trades until the end of a crowdsale, or have * an emergency switch for freezing all token transfers in the event of a large * bug. */ contract ERC20Pausable is Initializable, ERC20, Pausable { function initialize(address sender) public initializer { Pausable.initialize(sender); } function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } uint256[50] private ______gap; } /** * @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 Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable is Initializable, Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function initialize(address sender) public initializer { _owner = sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _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; } uint256[50] private ______gap; } library BasisPoints { using SafeMath for uint; uint constant private BASIS_POINTS = 10000; function mulBP(uint amt, uint bp) internal pure returns (uint) { if (amt == 0) return 0; return amt.mul(bp).div(BASIS_POINTS); } function addBP(uint amt, uint bp) internal pure returns (uint) { if (amt == 0) return 0; if (bp == 0) return amt; return amt.add(mulBP(amt, bp)); } function subBP(uint amt, uint bp) internal pure returns (uint) { if (amt == 0) return 0; if (bp == 0) return amt; return amt.sub(mulBP(amt, bp)); } } interface IStakeHandler { function handleStake(address staker, uint stakerDeltaValue, uint stakerFinalValue) external; function handleUnstake(address staker, uint stakerDeltaValue, uint stakerFinalValue) external; } contract AskoStaking is Initializable, Ownable { using BasisPoints for uint; using SafeMath for uint; uint256 constant internal DISTRIBUTION_MULTIPLIER = 2 ** 64; uint public stakingTaxBP; uint public unstakingTaxBP; IERC20 private askoToken; mapping(address => uint) public stakeValue; mapping(address => int) private stakerPayouts; uint public totalDistributions; uint public totalStaked; uint public totalStakers; uint private profitPerShare; uint private emptyStakeTokens; //These are tokens given to the contract when there are no stakers. IStakeHandler[] public stakeHandlers; uint public startTime; event OnDistribute(address sender, uint amountSent); event OnStake(address sender, uint amount, uint tax); event OnUnstake(address sender, uint amount, uint tax); event OnReinvest(address sender, uint amount, uint tax); event OnWithdraw(address sender, uint amount); modifier onlyAskoToken { require(msg.sender == address(askoToken), "Can only be called by AskoToken contract."); _; } modifier whenStakingActive { require(startTime != 0 && now > startTime, "Staking not yet started."); _; } function initialize( uint _stakingTaxBP, uint _ustakingTaxBP, address owner, IERC20 _askoToken ) public initializer { Ownable.initialize(msg.sender); stakingTaxBP = _stakingTaxBP; unstakingTaxBP = _ustakingTaxBP; askoToken = _askoToken; //Due to issue in oz testing suite, the msg.sender might not be owner _transferOwnership(owner); } function stake(uint amount) public whenStakingActive { require(amount >= 1e18, "Must stake at least one ASKO."); require(askoToken.balanceOf(msg.sender) >= amount, "Cannot stake more ASKO than you hold unstaked."); if (stakeValue[msg.sender] == 0) totalStakers = totalStakers.add(1); uint tax = _addStake(amount); require(askoToken.transferFrom(msg.sender, address(this), amount), "Stake failed due to failed transfer."); emit OnStake(msg.sender, amount, tax); } function unstake(uint amount) public whenStakingActive { require(amount >= 1e18, "Must unstake at least one ASKO."); require(stakeValue[msg.sender] >= amount, "Cannot unstake more ASKO than you have staked."); uint tax = findTaxAmount(amount, unstakingTaxBP); uint earnings = amount.sub(tax); if (stakeValue[msg.sender] == amount) totalStakers = totalStakers.sub(1); totalStaked = totalStaked.sub(amount); stakeValue[msg.sender] = stakeValue[msg.sender].sub(amount); uint payout = profitPerShare.mul(amount).add(tax.mul(DISTRIBUTION_MULTIPLIER)); stakerPayouts[msg.sender] = stakerPayouts[msg.sender] - uintToInt(payout); for (uint i=0; i < stakeHandlers.length; i++) { stakeHandlers[i].handleUnstake(msg.sender, amount, stakeValue[msg.sender]); } _increaseProfitPerShare(tax); require(askoToken.transferFrom(address(this), msg.sender, earnings), "Unstake failed due to failed transfer."); emit OnUnstake(msg.sender, amount, tax); } function withdraw(uint amount) public whenStakingActive { require(dividendsOf(msg.sender) >= amount, "Cannot withdraw more dividends than you have earned."); stakerPayouts[msg.sender] = stakerPayouts[msg.sender] + uintToInt(amount.mul(DISTRIBUTION_MULTIPLIER)); askoToken.transfer(msg.sender, amount); emit OnWithdraw(msg.sender, amount); } function reinvest(uint amount) public whenStakingActive { require(dividendsOf(msg.sender) >= amount, "Cannot reinvest more dividends than you have earned."); uint payout = amount.mul(DISTRIBUTION_MULTIPLIER); stakerPayouts[msg.sender] = stakerPayouts[msg.sender] + uintToInt(payout); uint tax = _addStake(amount); emit OnReinvest(msg.sender, amount, tax); } function distribute(uint amount) public { require(askoToken.balanceOf(msg.sender) >= amount, "Cannot distribute more ASKO than you hold unstaked."); totalDistributions = totalDistributions.add(amount); _increaseProfitPerShare(amount); require( askoToken.transferFrom(msg.sender, address(this), amount), "Distribution failed due to failed transfer." ); emit OnDistribute(msg.sender, amount); } function handleTaxDistribution(uint amount) public onlyAskoToken { totalDistributions = totalDistributions.add(amount); _increaseProfitPerShare(amount); emit OnDistribute(msg.sender, amount); } function dividendsOf(address staker) public view returns (uint) { return uint(uintToInt(profitPerShare.mul(stakeValue[staker])) - stakerPayouts[staker]) .div(DISTRIBUTION_MULTIPLIER); } function findTaxAmount(uint value, uint taxBP) public pure returns (uint) { return value.mulBP(taxBP); } function numberStakeHandlersRegistered() public view returns (uint) { return stakeHandlers.length; } function registerStakeHandler(IStakeHandler sc) public onlyOwner { stakeHandlers.push(sc); } function unregisterStakeHandler(uint index) public onlyOwner { IStakeHandler sc = stakeHandlers[stakeHandlers.length-1]; stakeHandlers.pop(); stakeHandlers[index] = sc; } function setStakingBP(uint valueBP) public onlyOwner { require(valueBP < 10000, "Tax connot be over 100% (10000 BP)"); stakingTaxBP = valueBP; } function setUnstakingBP(uint valueBP) public onlyOwner { require(valueBP < 10000, "Tax connot be over 100% (10000 BP)"); unstakingTaxBP = valueBP; } function setStartTime(uint _startTime) public onlyOwner { startTime = _startTime; } function uintToInt(uint val) internal pure returns (int) { if (val >= uint(-1).div(2)) { require(false, "Overflow. Cannot convert uint to int."); } else { return int(val); } } function _addStake(uint amount) internal returns (uint tax) { tax = findTaxAmount(amount, stakingTaxBP); uint stakeAmount = amount.sub(tax); totalStaked = totalStaked.add(stakeAmount); stakeValue[msg.sender] = stakeValue[msg.sender].add(stakeAmount); for (uint i=0; i < stakeHandlers.length; i++) { stakeHandlers[i].handleStake(msg.sender, stakeAmount, stakeValue[msg.sender]); } uint payout = profitPerShare.mul(stakeAmount); stakerPayouts[msg.sender] = stakerPayouts[msg.sender] + uintToInt(payout); _increaseProfitPerShare(tax); } function _increaseProfitPerShare(uint amount) internal { if (totalStaked != 0) { if (emptyStakeTokens != 0) { amount = amount.add(emptyStakeTokens); emptyStakeTokens = 0; } profitPerShare = profitPerShare.add(amount.mul(DISTRIBUTION_MULTIPLIER).div(totalStaked)); } else { emptyStakeTokens = emptyStakeTokens.add(amount); } } } contract AskoToken is Initializable, ERC20Burnable, ERC20Mintable, ERC20Pausable, ERC20Detailed, Ownable { using BasisPoints for uint; using SafeMath for uint; uint public taxBP; bool public isTaxActive; AskoStaking private askoStaking; mapping(address => bool) private trustedContracts; mapping(address => bool) public taxExempt; function initialize( string memory name, string memory symbol, uint8 decimals, address owner, uint _taxBP, AskoStaking _askoStaking ) public initializer { taxBP = _taxBP; isTaxActive = false; Ownable.initialize(msg.sender); ERC20Detailed.initialize(name, symbol, decimals); ERC20Mintable.initialize(address(this)); _removeMinter(address(this)); _addMinter(owner); ERC20Pausable.initialize(address(this)); _removePauser(address(this)); _addPauser(owner); askoStaking = _askoStaking; addTrustedContract(address(_askoStaking)); //Due to issue in oz testing suite, the msg.sender might not be owner _transferOwnership(owner); } function setTaxExemptStatus(address account, bool status) public onlyOwner { taxExempt[account] = status; } function findTaxAmount(uint value) public view returns (uint) { return value.mulBP(taxBP); } function transfer(address recipient, uint256 amount) public returns (bool) { (isTaxActive && !taxExempt[msg.sender] && !taxExempt[recipient]) ? _transferWithTax(msg.sender, recipient, amount) : _transfer(msg.sender, recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { (isTaxActive && !taxExempt[sender] && !taxExempt[recipient]) ? _transferWithTax(sender, recipient, amount) : _transfer(sender, recipient, amount); if (trustedContracts[msg.sender]) return true; approve ( msg.sender, allowance( sender, msg.sender ).sub(amount, "Transfer amount exceeds allowance") ); return true; } function setTaxRate(uint valueBP) public onlyOwner { require(valueBP < 10000, "Tax connot be over 100% (10000 BP)"); taxBP = valueBP; } function setIsTaxActive(bool value) public onlyOwner { isTaxActive = value; } function addTrustedContract(address contractAddress) public onlyOwner { trustedContracts[contractAddress] = true; } function removeTrustedContract(address contractAddress) public onlyOwner { trustedContracts[contractAddress] = false; } function _transferWithTax(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"); uint256 tokensToTax = findTaxAmount(amount); uint256 tokensToTransfer = amount.sub(tokensToTax); _transfer(sender, address(askoStaking), tokensToTax); _transfer(sender, recipient, tokensToTransfer); askoStaking.handleTaxDistribution(tokensToTax); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"addTrustedContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"findTaxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"_taxBP","type":"uint256"},{"internalType":"contract AskoStaking","name":"_askoStaking","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isTaxActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","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":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"removeTrustedContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsTaxActive","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setTaxExemptStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"valueBP","type":"uint256"}],"name":"setTaxRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"taxBP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612b16806100136000396000f3fe608060405234801561001057600080fd5b506004361061025a576000357c0100000000000000000000000000000000000000000000000000000000900480638da5cb5b11610158578063bf892eaa116100d5578063dd62ed3e11610099578063dd62ed3e146108f2578063e7dadade14610920578063f0314df01461093f578063f23ec8c414610965578063f2fde38b146109825761025a565b8063bf892eaa14610835578063c125c8611461085b578063c4d66de814610889578063c6d69a30146108af578063d1ecfc68146108cc5761025a565b806398a0dd091161011c57806398a0dd09146107a75780639df66eb7146107af578063a457c2d7146107b7578063a9059cbb146107e3578063aa271e1a1461080f5761025a565b80638da5cb5b146107455780638f32d59b1461076957806395d89b4114610771578063983b2d5614610779578063986502751461079f5761025a565b806340c10f19116101e657806370a08231116101aa57806370a08231146106bd578063715018a6146106e357806379cc6790146106eb57806382dc1ec4146107175780638456cb591461073d5761025a565b806340c10f191461063e57806342966c681461066a57806346fbf68e146106875780635c975abb146106ad5780636ef8d66d146106b55761025a565b806323b872dd1161022d57806323b872dd1461046a578063313ce567146104a057806334de7a83146104be578063395093511461060a5780633f4ba83a146106365761025a565b806306fdde031461025f578063095ea7b3146102dc5780631624f6c61461031c57806318160ddd14610450575b600080fd5b6102676109a8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a1578181015183820152602001610289565b50505050905090810190601f1680156102ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610308600480360360408110156102f257600080fd5b50600160a060020a038135169060200135610a40565b604080519115158252519081900360200190f35b61044e6004803603606081101561033257600080fd5b81019060208101813564010000000081111561034d57600080fd5b82018360208201111561035f57600080fd5b8035906020019184600183028401116401000000008311171561038157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156103d457600080fd5b8201836020820111156103e657600080fd5b8035906020019184600183028401116401000000008311171561040857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610aa09050565b005b610458610b82565b60408051918252519081900360200190f35b6103086004803603606081101561048057600080fd5b50600160a060020a03813581169160208101359091169060400135610b88565b6104a8610c68565b6040805160ff9092168252519081900360200190f35b61044e600480360360c08110156104d457600080fd5b8101906020810181356401000000008111156104ef57600080fd5b82018360208201111561050157600080fd5b8035906020019184600183028401116401000000008311171561052357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561057657600080fd5b82018360208201111561058857600080fd5b803590602001918460018302840111640100000000831117156105aa57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff833516935050600160a060020a036020830135811692604081013592506060013516610c72565b6103086004803603604081101561062057600080fd5b50600160a060020a038135169060200135610db8565b61044e610e0f565b6103086004803603604081101561065457600080fd5b50600160a060020a038135169060200135610f09565b61044e6004803603602081101561068057600080fd5b5035610f6c565b6103086004803603602081101561069d57600080fd5b5035600160a060020a0316610f80565b610308610f93565b61044e610f9d565b610458600480360360208110156106d357600080fd5b5035600160a060020a0316610faf565b61044e610fca565b61044e6004803603604081101561070157600080fd5b50600160a060020a03813516906020013561106d565b61044e6004803603602081101561072d57600080fd5b5035600160a060020a031661107b565b61044e6110cd565b61074d611197565b60408051600160a060020a039092168252519081900360200190f35b6103086111a7565b6102676111ce565b61044e6004803603602081101561078f57600080fd5b5035600160a060020a0316611230565b61044e611282565b610308611292565b61045861129c565b610308600480360360408110156107cd57600080fd5b50600160a060020a0381351690602001356112a3565b610308600480360360408110156107f957600080fd5b50600160a060020a0381351690602001356112fa565b6103086004803603602081101561082557600080fd5b5035600160a060020a0316611366565b61044e6004803603602081101561084b57600080fd5b5035600160a060020a0316611379565b61044e6004803603604081101561087157600080fd5b50600160a060020a03813516906020013515156113e5565b61044e6004803603602081101561089f57600080fd5b5035600160a060020a031661145b565b61044e600480360360208110156108c557600080fd5b503561155d565b610308600480360360208110156108e257600080fd5b5035600160a060020a03166115f0565b6104586004803603604081101561090857600080fd5b50600160a060020a0381358116916020013516611606565b61044e6004803603602081101561093657600080fd5b50351515611631565b61044e6004803603602081101561095557600080fd5b5035600160a060020a031661168f565b6104586004803603602081101561097b57600080fd5b50356116fe565b61044e6004803603602081101561099857600080fd5b5035600160a060020a0316611716565b6101978054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a355780601f10610a0a57610100808354040283529160200191610a35565b820191906000526020600020905b815481529060010190602001808311610a1857829003601f168201915b505050505090505b90565b6101325460009060ff1615610a8d576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612a79833981519152604482015290519081900360640190fd5b610a978383611769565b90505b92915050565b600054610100900460ff1680610ab95750610ab961177d565b80610ac7575060005460ff16155b610b055760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015610b30576000805460ff1961ff0019909116610100171660011790555b8351610b449061019790602087019061276e565b508251610b599061019890602086019061276e565b50610199805460ff191660ff84161790558015610b7c576000805461ff00191690555b50505050565b60355490565b6102005460009060ff168015610bb85750600160a060020a0384166000908152610202602052604090205460ff16155b8015610bde5750600160a060020a0383166000908152610202602052604090205460ff16155b610bf257610bed848484611783565b610bfd565b610bfd8484846118e7565b336000908152610201602052604090205460ff1615610c1e57506001610c61565b610c5b33610c56846040518060600160405280602181526020016128c460219139610c498933611606565b919063ffffffff611a5b16565b610a40565b50600190505b9392505050565b6101995460ff1690565b600054610100900460ff1680610c8b5750610c8b61177d565b80610c99575060005460ff16155b610cd75760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015610d02576000805460ff1961ff0019909116610100171660011790555b6101ff839055610200805460ff19169055610d1c3361145b565b610d27878787610aa0565b610d3030611af5565b610d3930611ba3565b610d4284611beb565b610d4b30611c33565b610d5430611ccc565b610d5d84611d14565b610200805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a03851602179055610d948261168f565b610d9d84611d5c565b8015610daf576000805461ff00191690555b50505050505050565b6101325460009060ff1615610e05576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612a79833981519152604482015290519081900360640190fd5b610a978383611e0f565b610e1f610e1a611e68565b610f80565b610e5d5760405160e560020a62461bcd02815260040180806020018281038252603081526020018061284c6030913960400191505060405180910390fd5b6101325460ff16610eb8576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b610132805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610eec611e68565b60408051600160a060020a039092168252519081900360200190a1565b6000610f1b610f16611e68565b611366565b610f595760405160e560020a62461bcd02815260040180806020018281038252603081526020018061292d6030913960400191505060405180910390fd5b610f638383611e6c565b50600192915050565b610f7d610f77611e68565b82611f61565b50565b6000610a9a60ff8363ffffffff61206016565b6101325460ff1690565b610fad610fa8611e68565b611ccc565b565b600160a060020a031660009081526033602052604090205490565b610fd26111a7565b611014576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b6101cc54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36101cc805473ffffffffffffffffffffffffffffffffffffffff19169055565b61107782826120ca565b5050565b611086610e1a611e68565b6110c45760405160e560020a62461bcd02815260040180806020018281038252603081526020018061284c6030913960400191505060405180910390fd5b610f7d81611d14565b6110d8610e1a611e68565b6111165760405160e560020a62461bcd02815260040180806020018281038252603081526020018061284c6030913960400191505060405180910390fd5b6101325460ff1615611160576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612a79833981519152604482015290519081900360640190fd5b610132805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610eec611e68565b6101cc54600160a060020a031690565b6101cc54600090600160a060020a03166111bf611e68565b600160a060020a031614905090565b6101988054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a355780601f10610a0a57610100808354040283529160200191610a35565b61123b610f16611e68565b6112795760405160e560020a62461bcd02815260040180806020018281038252603081526020018061292d6030913960400191505060405180910390fd5b610f7d81611beb565b610fad61128d611e68565b611ba3565b6102005460ff1681565b6101ff5481565b6101325460009060ff16156112f0576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612a79833981519152604482015290519081900360640190fd5b610a978383612145565b6102005460009060ff1680156113215750336000908152610202602052604090205460ff16155b80156113475750600160a060020a0383166000908152610202602052604090205460ff16155b61135b57611356338484611783565b610f63565b610f633384846118e7565b6000610a9a609a8363ffffffff61206016565b6113816111a7565b6113c3576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b600160a060020a0316600090815261020160205260409020805460ff19169055565b6113ed6111a7565b61142f576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b600160a060020a0391909116600090815261020260205260409020805460ff1916911515919091179055565b600054610100900460ff1680611474575061147461177d565b80611482575060005460ff16155b6114c05760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff161580156114eb576000805460ff1961ff0019909116610100171660011790555b6101cc805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38015611077576000805461ff00191690555050565b6115656111a7565b6115a7576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b61271081106115ea5760405160e560020a62461bcd02815260040180806020018281038252602281526020018061290b6022913960400191505060405180910390fd5b6101ff55565b6102026020526000908152604090205460ff1681565b600160a060020a03918216600090815260346020908152604080832093909416825291909152205490565b6116396111a7565b61167b576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b610200805460ff1916911515919091179055565b6116976111a7565b6116d9576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b600160a060020a0316600090815261020160205260409020805460ff19166001179055565b6000610a9a6101ff54836121b390919063ffffffff16565b61171e6111a7565b611760576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b610f7d81611d5c565b6000610f63611776611e68565b84846121e4565b303b1590565b600160a060020a0383166117cb5760405160e560020a62461bcd028152600401808060200182810382526025815260200180612a546025913960400191505060405180910390fd5b600160a060020a0382166118135760405160e560020a62461bcd0281526004018080602001828103825260238152602001806128076023913960400191505060405180910390fd5b611856816040518060600160405280602681526020016128e560269139600160a060020a038616600090815260336020526040902054919063ffffffff611a5b16565b600160a060020a03808516600090815260336020526040808220939093559084168152205461188b908263ffffffff6122d616565b600160a060020a0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600160a060020a03831661192f5760405160e560020a62461bcd028152600401808060200182810382526025815260200180612a546025913960400191505060405180910390fd5b600160a060020a0382166119775760405160e560020a62461bcd0281526004018080602001828103825260238152602001806128076023913960400191505060405180910390fd5b6000611982826116fe565b90506000611996838363ffffffff61233316565b90506119b98561020060019054906101000a9004600160a060020a031684611783565b6119c4858583611783565b61020060019054906101000a9004600160a060020a0316600160a060020a0316638cb3c661836040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b158015611a3c57600080fd5b505af1158015611a50573d6000803e3d6000fd5b505050505050505050565b60008184841115611aed5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ab2578181015183820152602001611a9a565b50505050905090810190601f168015611adf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600054610100900460ff1680611b0e5750611b0e61177d565b80611b1c575060005460ff16155b611b5a5760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015611b85576000805460ff1961ff0019909116610100171660011790555b611b8e82612375565b8015611077576000805461ff00191690555050565b611bb4609a8263ffffffff61241b16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b611bfc609a8263ffffffff61248516565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b600054610100900460ff1680611c4c5750611c4c61177d565b80611c5a575060005460ff16155b611c985760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015611cc3576000805460ff1961ff0019909116610100171660011790555b611b8e82612509565b611cdd60ff8263ffffffff61241b16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611d2560ff8263ffffffff61248516565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a038116611da45760405160e560020a62461bcd02815260040180806020018281038252602681526020018061287c6026913960400191505060405180910390fd5b6101cc54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36101cc805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000610f63611e1c611e68565b84611e638560346000611e2d611e68565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6122d616565b6121e4565b3390565b600160a060020a038216611eca576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b603554611edd908263ffffffff6122d616565b603555600160a060020a038216600090815260336020526040902054611f09908263ffffffff6122d616565b600160a060020a03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216611fa95760405160e560020a62461bcd028152600401808060200182810382526021815260200180612a336021913960400191505060405180910390fd5b611fec8160405180606001604052806022815260200161282a60229139600160a060020a038516600090815260336020526040902054919063ffffffff611a5b16565b600160a060020a038316600090815260336020526040902055603554612018908263ffffffff61233316565b603555604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000600160a060020a0382166120aa5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806129bf6022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6120d48282611f61565b611077826120e0611e68565b611e6384604051806060016040528060248152602001612a0f60249139600160a060020a03881660009081526034602052604081209061211e611e68565b600160a060020a03168152602081019190915260400160002054919063ffffffff611a5b16565b6000610f63612152611e68565b84611e6385604051806060016040528060258152602001612abd602591396034600061217c611e68565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611a5b16565b6000826121c257506000610a9a565b610a976127106121d8858563ffffffff6125c216565b9063ffffffff61261e16565b600160a060020a03831661222c5760405160e560020a62461bcd028152600401808060200182810382526024815260200180612a996024913960400191505060405180910390fd5b600160a060020a0382166122745760405160e560020a62461bcd0281526004018080602001828103825260228152602001806128a26022913960400191505060405180910390fd5b600160a060020a03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082820183811015610a97576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610a9783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a5b565b600054610100900460ff168061238e575061238e61177d565b8061239c575060005460ff16155b6123da5760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015612405576000805460ff1961ff0019909116610100171660011790555b61240e82611366565b611b8e57611b8e82611beb565b6124258282612060565b6124635760405160e560020a62461bcd02815260040180806020018281038252602181526020018061295d6021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b61248f8282612060565b156124e4576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600054610100900460ff1680612522575061252261177d565b80612530575060005460ff16155b61256e5760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015612599576000805460ff1961ff0019909116610100171660011790555b6125a282612660565b610132805460ff191690558015611077576000805461ff00191690555050565b6000826125d157506000610a9a565b828202828482816125de57fe5b0414610a975760405160e560020a62461bcd02815260040180806020018281038252602181526020018061297e6021913960400191505060405180910390fd5b6000610a9783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612706565b600054610100900460ff1680612679575061267961177d565b80612687575060005460ff16155b6126c55760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff161580156126f0576000805460ff1961ff0019909116610100171660011790555b6126f982610f80565b611b8e57611b8e82611d14565b600081836127585760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315611ab2578181015183820152602001611a9a565b50600083858161276457fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127af57805160ff19168380011785556127dc565b828001600101855582156127dc579182015b828111156127dc5782518255916020019190600101906127c1565b506127e89291506127ec565b5090565b610a3d91905b808211156127e857600081556001016127f256fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554617820636f6e6e6f74206265206f766572203130302520283130303030204250294d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735061757361626c653a207061757365640000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158201fb33f7d9103da86c18262c412b5dc6796df6535aaabd076778d376dd8382c2364736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025a576000357c0100000000000000000000000000000000000000000000000000000000900480638da5cb5b11610158578063bf892eaa116100d5578063dd62ed3e11610099578063dd62ed3e146108f2578063e7dadade14610920578063f0314df01461093f578063f23ec8c414610965578063f2fde38b146109825761025a565b8063bf892eaa14610835578063c125c8611461085b578063c4d66de814610889578063c6d69a30146108af578063d1ecfc68146108cc5761025a565b806398a0dd091161011c57806398a0dd09146107a75780639df66eb7146107af578063a457c2d7146107b7578063a9059cbb146107e3578063aa271e1a1461080f5761025a565b80638da5cb5b146107455780638f32d59b1461076957806395d89b4114610771578063983b2d5614610779578063986502751461079f5761025a565b806340c10f19116101e657806370a08231116101aa57806370a08231146106bd578063715018a6146106e357806379cc6790146106eb57806382dc1ec4146107175780638456cb591461073d5761025a565b806340c10f191461063e57806342966c681461066a57806346fbf68e146106875780635c975abb146106ad5780636ef8d66d146106b55761025a565b806323b872dd1161022d57806323b872dd1461046a578063313ce567146104a057806334de7a83146104be578063395093511461060a5780633f4ba83a146106365761025a565b806306fdde031461025f578063095ea7b3146102dc5780631624f6c61461031c57806318160ddd14610450575b600080fd5b6102676109a8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a1578181015183820152602001610289565b50505050905090810190601f1680156102ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610308600480360360408110156102f257600080fd5b50600160a060020a038135169060200135610a40565b604080519115158252519081900360200190f35b61044e6004803603606081101561033257600080fd5b81019060208101813564010000000081111561034d57600080fd5b82018360208201111561035f57600080fd5b8035906020019184600183028401116401000000008311171561038157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156103d457600080fd5b8201836020820111156103e657600080fd5b8035906020019184600183028401116401000000008311171561040857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610aa09050565b005b610458610b82565b60408051918252519081900360200190f35b6103086004803603606081101561048057600080fd5b50600160a060020a03813581169160208101359091169060400135610b88565b6104a8610c68565b6040805160ff9092168252519081900360200190f35b61044e600480360360c08110156104d457600080fd5b8101906020810181356401000000008111156104ef57600080fd5b82018360208201111561050157600080fd5b8035906020019184600183028401116401000000008311171561052357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561057657600080fd5b82018360208201111561058857600080fd5b803590602001918460018302840111640100000000831117156105aa57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff833516935050600160a060020a036020830135811692604081013592506060013516610c72565b6103086004803603604081101561062057600080fd5b50600160a060020a038135169060200135610db8565b61044e610e0f565b6103086004803603604081101561065457600080fd5b50600160a060020a038135169060200135610f09565b61044e6004803603602081101561068057600080fd5b5035610f6c565b6103086004803603602081101561069d57600080fd5b5035600160a060020a0316610f80565b610308610f93565b61044e610f9d565b610458600480360360208110156106d357600080fd5b5035600160a060020a0316610faf565b61044e610fca565b61044e6004803603604081101561070157600080fd5b50600160a060020a03813516906020013561106d565b61044e6004803603602081101561072d57600080fd5b5035600160a060020a031661107b565b61044e6110cd565b61074d611197565b60408051600160a060020a039092168252519081900360200190f35b6103086111a7565b6102676111ce565b61044e6004803603602081101561078f57600080fd5b5035600160a060020a0316611230565b61044e611282565b610308611292565b61045861129c565b610308600480360360408110156107cd57600080fd5b50600160a060020a0381351690602001356112a3565b610308600480360360408110156107f957600080fd5b50600160a060020a0381351690602001356112fa565b6103086004803603602081101561082557600080fd5b5035600160a060020a0316611366565b61044e6004803603602081101561084b57600080fd5b5035600160a060020a0316611379565b61044e6004803603604081101561087157600080fd5b50600160a060020a03813516906020013515156113e5565b61044e6004803603602081101561089f57600080fd5b5035600160a060020a031661145b565b61044e600480360360208110156108c557600080fd5b503561155d565b610308600480360360208110156108e257600080fd5b5035600160a060020a03166115f0565b6104586004803603604081101561090857600080fd5b50600160a060020a0381358116916020013516611606565b61044e6004803603602081101561093657600080fd5b50351515611631565b61044e6004803603602081101561095557600080fd5b5035600160a060020a031661168f565b6104586004803603602081101561097b57600080fd5b50356116fe565b61044e6004803603602081101561099857600080fd5b5035600160a060020a0316611716565b6101978054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a355780601f10610a0a57610100808354040283529160200191610a35565b820191906000526020600020905b815481529060010190602001808311610a1857829003601f168201915b505050505090505b90565b6101325460009060ff1615610a8d576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612a79833981519152604482015290519081900360640190fd5b610a978383611769565b90505b92915050565b600054610100900460ff1680610ab95750610ab961177d565b80610ac7575060005460ff16155b610b055760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015610b30576000805460ff1961ff0019909116610100171660011790555b8351610b449061019790602087019061276e565b508251610b599061019890602086019061276e565b50610199805460ff191660ff84161790558015610b7c576000805461ff00191690555b50505050565b60355490565b6102005460009060ff168015610bb85750600160a060020a0384166000908152610202602052604090205460ff16155b8015610bde5750600160a060020a0383166000908152610202602052604090205460ff16155b610bf257610bed848484611783565b610bfd565b610bfd8484846118e7565b336000908152610201602052604090205460ff1615610c1e57506001610c61565b610c5b33610c56846040518060600160405280602181526020016128c460219139610c498933611606565b919063ffffffff611a5b16565b610a40565b50600190505b9392505050565b6101995460ff1690565b600054610100900460ff1680610c8b5750610c8b61177d565b80610c99575060005460ff16155b610cd75760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015610d02576000805460ff1961ff0019909116610100171660011790555b6101ff839055610200805460ff19169055610d1c3361145b565b610d27878787610aa0565b610d3030611af5565b610d3930611ba3565b610d4284611beb565b610d4b30611c33565b610d5430611ccc565b610d5d84611d14565b610200805474ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a03851602179055610d948261168f565b610d9d84611d5c565b8015610daf576000805461ff00191690555b50505050505050565b6101325460009060ff1615610e05576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612a79833981519152604482015290519081900360640190fd5b610a978383611e0f565b610e1f610e1a611e68565b610f80565b610e5d5760405160e560020a62461bcd02815260040180806020018281038252603081526020018061284c6030913960400191505060405180910390fd5b6101325460ff16610eb8576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b610132805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610eec611e68565b60408051600160a060020a039092168252519081900360200190a1565b6000610f1b610f16611e68565b611366565b610f595760405160e560020a62461bcd02815260040180806020018281038252603081526020018061292d6030913960400191505060405180910390fd5b610f638383611e6c565b50600192915050565b610f7d610f77611e68565b82611f61565b50565b6000610a9a60ff8363ffffffff61206016565b6101325460ff1690565b610fad610fa8611e68565b611ccc565b565b600160a060020a031660009081526033602052604090205490565b610fd26111a7565b611014576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b6101cc54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36101cc805473ffffffffffffffffffffffffffffffffffffffff19169055565b61107782826120ca565b5050565b611086610e1a611e68565b6110c45760405160e560020a62461bcd02815260040180806020018281038252603081526020018061284c6030913960400191505060405180910390fd5b610f7d81611d14565b6110d8610e1a611e68565b6111165760405160e560020a62461bcd02815260040180806020018281038252603081526020018061284c6030913960400191505060405180910390fd5b6101325460ff1615611160576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612a79833981519152604482015290519081900360640190fd5b610132805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610eec611e68565b6101cc54600160a060020a031690565b6101cc54600090600160a060020a03166111bf611e68565b600160a060020a031614905090565b6101988054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a355780601f10610a0a57610100808354040283529160200191610a35565b61123b610f16611e68565b6112795760405160e560020a62461bcd02815260040180806020018281038252603081526020018061292d6030913960400191505060405180910390fd5b610f7d81611beb565b610fad61128d611e68565b611ba3565b6102005460ff1681565b6101ff5481565b6101325460009060ff16156112f0576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612a79833981519152604482015290519081900360640190fd5b610a978383612145565b6102005460009060ff1680156113215750336000908152610202602052604090205460ff16155b80156113475750600160a060020a0383166000908152610202602052604090205460ff16155b61135b57611356338484611783565b610f63565b610f633384846118e7565b6000610a9a609a8363ffffffff61206016565b6113816111a7565b6113c3576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b600160a060020a0316600090815261020160205260409020805460ff19169055565b6113ed6111a7565b61142f576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b600160a060020a0391909116600090815261020260205260409020805460ff1916911515919091179055565b600054610100900460ff1680611474575061147461177d565b80611482575060005460ff16155b6114c05760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff161580156114eb576000805460ff1961ff0019909116610100171660011790555b6101cc805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38015611077576000805461ff00191690555050565b6115656111a7565b6115a7576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b61271081106115ea5760405160e560020a62461bcd02815260040180806020018281038252602281526020018061290b6022913960400191505060405180910390fd5b6101ff55565b6102026020526000908152604090205460ff1681565b600160a060020a03918216600090815260346020908152604080832093909416825291909152205490565b6116396111a7565b61167b576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b610200805460ff1916911515919091179055565b6116976111a7565b6116d9576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b600160a060020a0316600090815261020160205260409020805460ff19166001179055565b6000610a9a6101ff54836121b390919063ffffffff16565b61171e6111a7565b611760576040805160e560020a62461bcd028152602060048201819052602482015260008051602061299f833981519152604482015290519081900360640190fd5b610f7d81611d5c565b6000610f63611776611e68565b84846121e4565b303b1590565b600160a060020a0383166117cb5760405160e560020a62461bcd028152600401808060200182810382526025815260200180612a546025913960400191505060405180910390fd5b600160a060020a0382166118135760405160e560020a62461bcd0281526004018080602001828103825260238152602001806128076023913960400191505060405180910390fd5b611856816040518060600160405280602681526020016128e560269139600160a060020a038616600090815260336020526040902054919063ffffffff611a5b16565b600160a060020a03808516600090815260336020526040808220939093559084168152205461188b908263ffffffff6122d616565b600160a060020a0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600160a060020a03831661192f5760405160e560020a62461bcd028152600401808060200182810382526025815260200180612a546025913960400191505060405180910390fd5b600160a060020a0382166119775760405160e560020a62461bcd0281526004018080602001828103825260238152602001806128076023913960400191505060405180910390fd5b6000611982826116fe565b90506000611996838363ffffffff61233316565b90506119b98561020060019054906101000a9004600160a060020a031684611783565b6119c4858583611783565b61020060019054906101000a9004600160a060020a0316600160a060020a0316638cb3c661836040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040180828152602001915050600060405180830381600087803b158015611a3c57600080fd5b505af1158015611a50573d6000803e3d6000fd5b505050505050505050565b60008184841115611aed5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ab2578181015183820152602001611a9a565b50505050905090810190601f168015611adf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600054610100900460ff1680611b0e5750611b0e61177d565b80611b1c575060005460ff16155b611b5a5760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015611b85576000805460ff1961ff0019909116610100171660011790555b611b8e82612375565b8015611077576000805461ff00191690555050565b611bb4609a8263ffffffff61241b16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b611bfc609a8263ffffffff61248516565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b600054610100900460ff1680611c4c5750611c4c61177d565b80611c5a575060005460ff16155b611c985760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015611cc3576000805460ff1961ff0019909116610100171660011790555b611b8e82612509565b611cdd60ff8263ffffffff61241b16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b611d2560ff8263ffffffff61248516565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a038116611da45760405160e560020a62461bcd02815260040180806020018281038252602681526020018061287c6026913960400191505060405180910390fd5b6101cc54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36101cc805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000610f63611e1c611e68565b84611e638560346000611e2d611e68565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6122d616565b6121e4565b3390565b600160a060020a038216611eca576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b603554611edd908263ffffffff6122d616565b603555600160a060020a038216600090815260336020526040902054611f09908263ffffffff6122d616565b600160a060020a03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216611fa95760405160e560020a62461bcd028152600401808060200182810382526021815260200180612a336021913960400191505060405180910390fd5b611fec8160405180606001604052806022815260200161282a60229139600160a060020a038516600090815260336020526040902054919063ffffffff611a5b16565b600160a060020a038316600090815260336020526040902055603554612018908263ffffffff61233316565b603555604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000600160a060020a0382166120aa5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806129bf6022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6120d48282611f61565b611077826120e0611e68565b611e6384604051806060016040528060248152602001612a0f60249139600160a060020a03881660009081526034602052604081209061211e611e68565b600160a060020a03168152602081019190915260400160002054919063ffffffff611a5b16565b6000610f63612152611e68565b84611e6385604051806060016040528060258152602001612abd602591396034600061217c611e68565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611a5b16565b6000826121c257506000610a9a565b610a976127106121d8858563ffffffff6125c216565b9063ffffffff61261e16565b600160a060020a03831661222c5760405160e560020a62461bcd028152600401808060200182810382526024815260200180612a996024913960400191505060405180910390fd5b600160a060020a0382166122745760405160e560020a62461bcd0281526004018080602001828103825260228152602001806128a26022913960400191505060405180910390fd5b600160a060020a03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082820183811015610a97576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610a9783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a5b565b600054610100900460ff168061238e575061238e61177d565b8061239c575060005460ff16155b6123da5760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015612405576000805460ff1961ff0019909116610100171660011790555b61240e82611366565b611b8e57611b8e82611beb565b6124258282612060565b6124635760405160e560020a62461bcd02815260040180806020018281038252602181526020018061295d6021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b61248f8282612060565b156124e4576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600054610100900460ff1680612522575061252261177d565b80612530575060005460ff16155b61256e5760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff16158015612599576000805460ff1961ff0019909116610100171660011790555b6125a282612660565b610132805460ff191690558015611077576000805461ff00191690555050565b6000826125d157506000610a9a565b828202828482816125de57fe5b0414610a975760405160e560020a62461bcd02815260040180806020018281038252602181526020018061297e6021913960400191505060405180910390fd5b6000610a9783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612706565b600054610100900460ff1680612679575061267961177d565b80612687575060005460ff16155b6126c55760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806129e1602e913960400191505060405180910390fd5b600054610100900460ff161580156126f0576000805460ff1961ff0019909116610100171660011790555b6126f982610f80565b611b8e57611b8e82611d14565b600081836127585760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315611ab2578181015183820152602001611a9a565b50600083858161276457fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127af57805160ff19168380011785556127dc565b828001600101855582156127dc579182015b828111156127dc5782518255916020019190600101906127c1565b506127e89291506127ec565b5090565b610a3d91905b808211156127e857600081556001016127f256fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554617820636f6e6e6f74206265206f766572203130302520283130303030204250294d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735061757361626c653a207061757365640000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158201fb33f7d9103da86c18262c412b5dc6796df6535aaabd076778d376dd8382c2364736f6c63430005100032
Deployed Bytecode Sourcemap
40195:3398:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40195:3398:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15593:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;15593:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23427:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23427:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15337:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15337:186:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;15337:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;15337:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;15337:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;15337:186:0;;;;;;;;-1:-1:-1;15337:186:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;15337:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;15337:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;15337:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;15337:186:0;;-1:-1:-1;;;15337:186:0;;;;;-1:-1:-1;15337:186:0;;-1:-1:-1;15337:186:0:i;:::-;;7499:91;;;:::i;:::-;;;;;;;;;;;;;;;;41917:569;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41917:569:0;;;;;;;;;;;;;;;;;:::i;16445:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40570:789;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;40570:789:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;40570:789:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40570:789:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40570:789:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;40570:789:0;;;;;;;;-1:-1:-1;40570:789:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;40570:789:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40570:789:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40570:789:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;40570:789:0;;-1:-1:-1;;40570:789:0;;;;;-1:-1:-1;;;;;;;40570:789:0;;;;;;;;;;;;-1:-1:-1;40570:789:0;;;;;:::i;23575:170::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23575:170:0;;;;;;;;:::i;22518:120::-;;;:::i;19250:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19250:143:0;;;;;;;;:::i;14647:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14647:83:0;;:::i;19959:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19959:109:0;-1:-1:-1;;;;;19959:109:0;;:::i;21725:78::-;;;:::i;20176:79::-;;;:::i;7653:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7653:110:0;-1:-1:-1;;;;;7653:110:0;;:::i;31091:140::-;;;:::i;14792:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14792:103:0;;;;;;;;:::i;20076:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20076:92:0;-1:-1:-1;;;;;20076:92:0;;:::i;22305:118::-;;;:::i;30278:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;30278:79:0;;;;;;;;;;;;;;30644:94;;;:::i;15795:87::-;;;:::i;18206:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18206:92:0;-1:-1:-1;;;;;18206:92:0;;:::i;18306:79::-;;;:::i;40396:23::-;;;:::i;40372:17::-;;;:::i;23753:180::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23753:180:0;;;;;;;;:::i;41610:299::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41610:299:0;;;;;;;;:::i;18089:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18089:109:0;-1:-1:-1;;;;;18089:109:0;;:::i;42896:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42896:133:0;-1:-1:-1;;;;;42896:133:0;;:::i;41367:121::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41367:121:0;;;;;;;;;;:::i;30052:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30052:145:0;-1:-1:-1;;;;;30052:145:0;;:::i;42494:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42494:158:0;;:::i;40520:41::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40520:41:0;-1:-1:-1;;;;;40520:41:0;;:::i;8197:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8197:134:0;;;;;;;;;;:::i;42660:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42660:91:0;;;;:::i;42759:129::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42759:129:0;-1:-1:-1;;;;;42759:129:0;;:::i;41496:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41496:106:0;;:::i;31386:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31386:109:0;-1:-1:-1;;;;;31386:109:0;;:::i;15593:83::-;15663:5;15656:12;;;;;;;;-1:-1:-1;;15656:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15630:13;;15656:12;;15663:5;;15656:12;;15663:5;15656:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15593:83;;:::o;23427:140::-;21962:7;;23506:4;;21962:7;;21961:8;21953:37;;;;;-1:-1:-1;;;;;21953:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21953:37:0;;;;;;;;;;;;;;;23530:29;23544:7;23553:5;23530:13;:29::i;:::-;23523:36;;22001:1;23427:140;;;;:::o;15337:186::-;1046:12;;;;;;;;:31;;;1062:15;:13;:15::i;:::-;1046:47;;;-1:-1:-1;1082:11:0;;;;1081:12;1046:47;1038:106;;;;-1:-1:-1;;;;;1038:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:19;1176:12;;;;;;1175:13;1195:83;;;;1224:12;:19;;-1:-1:-1;;;;1224:19:0;;;;;1252:18;1239:4;1252:18;;;1195:83;15445:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;15468:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;15495:9:0;:20;;-1:-1:-1;;15495:20:0;;;;;;;1296:57;;;;1340:5;1325:20;;-1:-1:-1;;1325:20:0;;;1296:57;15337:186;;;;:::o;7499:91::-;7570:12;;7499:91;:::o;41917:569::-;42024:11;;42006:4;;42024:11;;:33;;;;-1:-1:-1;;;;;;42040:17:0;;;;;;:9;:17;;;;;;;;42039:18;42024:33;:58;;;;-1:-1:-1;;;;;;42062:20:0;;;;;;:9;:20;;;;;;;;42061:21;42024:58;42023:171;;42158:36;42168:6;42176:9;42187:6;42158:9;:36::i;:::-;42023:171;;;42099:43;42116:6;42124:9;42135:6;42099:16;:43::i;:::-;42226:10;42209:28;;;;:16;:28;;;;;;;;42205:45;;;-1:-1:-1;42246:4:0;42239:11;;42205:45;42261:195;42293:10;42318:127;42401:6;42318:127;;;;;;;;;;;;;;;;;:78;42346:6;42371:10;42318:9;:78::i;:::-;:82;:127;;:82;:127;:::i;:::-;42261:7;:195::i;:::-;;42474:4;42467:11;;41917:569;;;;;;:::o;16445:83::-;16511:9;;;;16445:83;:::o;40570:789::-;1046:12;;;;;;;;:31;;;1062:15;:13;:15::i;:::-;1046:47;;;-1:-1:-1;1082:11:0;;;;1081:12;1046:47;1038:106;;;;-1:-1:-1;;;;;1038:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:19;1176:12;;;;;;1175:13;1195:83;;;;1224:12;:19;;-1:-1:-1;;;;1224:19:0;;;;;1252:18;1239:4;1252:18;;;1195:83;40757:5;:14;;;40784:11;:19;;-1:-1:-1;;40784:19:0;;;40816:30;40835:10;40816:18;:30::i;:::-;40859:48;40884:4;40890:6;40898:8;40859:24;:48::i;:::-;40920:39;40953:4;40920:24;:39::i;:::-;40970:28;40992:4;40970:13;:28::i;:::-;41009:17;41020:5;41009:10;:17::i;:::-;41039:39;41072:4;41039:24;:39::i;:::-;41089:28;41111:4;41089:13;:28::i;:::-;41128:17;41139:5;41128:10;:17::i;:::-;41158:11;:26;;-1:-1:-1;;41158:26:0;;-1:-1:-1;;;;;41158:26:0;;;;;;41195:41;41158:26;41195:18;:41::i;:::-;41326:25;41345:5;41326:18;:25::i;:::-;1300:14;1296:57;;;1340:5;1325:20;;-1:-1:-1;;1325:20:0;;;1296:57;40570:789;;;;;;;:::o;23575:170::-;21962:7;;23669:4;;21962:7;;21961:8;21953:37;;;;;-1:-1:-1;;;;;21953:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21953:37:0;;;;;;;;;;;;;;;23693:44;23717:7;23726:10;23693:23;:44::i;22518:120::-;19856:22;19865:12;:10;:12::i;:::-;19856:8;:22::i;:::-;19848:83;;;;-1:-1:-1;;;;;19848:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22161:7;;;;22153:40;;;;;-1:-1:-1;;;;;22153:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22577:7;:15;;-1:-1:-1;;22577:15:0;;;22608:22;22617:12;:10;:12::i;:::-;22608:22;;;-1:-1:-1;;;;;22608:22:0;;;;;;;;;;;;;;22518:120::o;19250:143::-;19324:4;17986:22;17995:12;:10;:12::i;:::-;17986:8;:22::i;:::-;17978:83;;;;-1:-1:-1;;;;;17978:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19341:22;19347:7;19356:6;19341:5;:22::i;:::-;-1:-1:-1;19381:4:0;19250:143;;;;:::o;14647:83::-;14695:27;14701:12;:10;:12::i;:::-;14715:6;14695:5;:27::i;:::-;14647:83;:::o;19959:109::-;20015:4;20039:21;:8;20052:7;20039:21;:12;:21;:::i;21725:78::-;21788:7;;;;21725:78;:::o;20176:79::-;20220:27;20234:12;:10;:12::i;:::-;20220:13;:27::i;:::-;20176:79::o;7653:110::-;-1:-1:-1;;;;;7737:18:0;7710:7;7737:18;;;:9;:18;;;;;;;7653:110::o;31091:140::-;30490:9;:7;:9::i;:::-;30482:54;;;;;-1:-1:-1;;;;;30482:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30482:54:0;;;;;;;;;;;;;;;31174:6;;31153:40;;31190:1;;-1:-1:-1;;;;;31174:6:0;;31153:40;;31190:1;;31153:40;31204:6;:19;;-1:-1:-1;;31204:19:0;;;31091:140::o;14792:103::-;14861:26;14871:7;14880:6;14861:9;:26::i;:::-;14792:103;;:::o;20076:92::-;19856:22;19865:12;:10;:12::i;19856:22::-;19848:83;;;;-1:-1:-1;;;;;19848:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20141:19;20152:7;20141:10;:19::i;22305:118::-;19856:22;19865:12;:10;:12::i;19856:22::-;19848:83;;;;-1:-1:-1;;;;;19848:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21962:7;;;;21961:8;21953:37;;;;;-1:-1:-1;;;;;21953:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21953:37:0;;;;;;;;;;;;;;;22365:7;:14;;-1:-1:-1;;22365:14:0;22375:4;22365:14;;;22395:20;22402:12;:10;:12::i;30278:79::-;30343:6;;-1:-1:-1;;;;;30343:6:0;30278:79;:::o;30644:94::-;30724:6;;30684:4;;-1:-1:-1;;;;;30724:6:0;30708:12;:10;:12::i;:::-;-1:-1:-1;;;;;30708:22:0;;30701:29;;30644:94;:::o;15795:87::-;15867:7;15860:14;;;;;;;;-1:-1:-1;;15860:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15834:13;;15860:14;;15867:7;;15860:14;;15867:7;15860:14;;;;;;;;;;;;;;;;;;;;;;;;18206:92;17986:22;17995:12;:10;:12::i;17986:22::-;17978:83;;;;-1:-1:-1;;;;;17978:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18271:19;18282:7;18271:10;:19::i;18306:79::-;18350:27;18364:12;:10;:12::i;:::-;18350:13;:27::i;40396:23::-;;;;;;:::o;40372:17::-;;;;:::o;23753:180::-;21962:7;;23852:4;;21962:7;;21961:8;21953:37;;;;;-1:-1:-1;;;;;21953:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21953:37:0;;;;;;;;;;;;;;;23876:49;23900:7;23909:15;23876:23;:49::i;41610:299::-;41697:11;;41679:4;;41697:11;;:37;;;;-1:-1:-1;41723:10:0;41713:21;;;;:9;:21;;;;;;;;41712:22;41697:37;:62;;;;-1:-1:-1;;;;;;41739:20:0;;;;;;:9;:20;;;;;;;;41738:21;41697:62;41696:183;;41839:40;41849:10;41861:9;41872:6;41839:9;:40::i;:::-;41696:183;;;41776:47;41793:10;41805:9;41816:6;41776:16;:47::i;18089:109::-;18145:4;18169:21;:8;18182:7;18169:21;:12;:21;:::i;42896:133::-;30490:9;:7;:9::i;:::-;30482:54;;;;;-1:-1:-1;;;;;30482:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30482:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42980:33:0;43016:5;42980:33;;;:16;:33;;;;;:41;;-1:-1:-1;;42980:41:0;;;42896:133::o;41367:121::-;30490:9;:7;:9::i;:::-;30482:54;;;;;-1:-1:-1;;;;;30482:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30482:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41453:18:0;;;;;;;;:9;:18;;;;;:27;;-1:-1:-1;;41453:27:0;;;;;;;;;;41367:121::o;30052:145::-;1046:12;;;;;;;;:31;;;1062:15;:13;:15::i;:::-;1046:47;;;-1:-1:-1;1082:11:0;;;;1081:12;1046:47;1038:106;;;;-1:-1:-1;;;;;1038:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:19;1176:12;;;;;;1175:13;1195:83;;;;1224:12;:19;;-1:-1:-1;;;;1224:19:0;;;;;1252:18;1239:4;1252:18;;;1195:83;30118:6;:15;;-1:-1:-1;;30118:15:0;-1:-1:-1;;;;;30118:15:0;;;;;;;;;;;30149:40;;30182:6;;;-1:-1:-1;;30149:40:0;;-1:-1:-1;;30149:40:0;1300:14;1296:57;;;1340:5;1325:20;;-1:-1:-1;;1325:20:0;;;30052:145;;:::o;42494:158::-;30490:9;:7;:9::i;:::-;30482:54;;;;;-1:-1:-1;;;;;30482:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30482:54:0;;;;;;;;;;;;;;;42574:5;42564:7;:15;42556:62;;;;-1:-1:-1;;;;;42556:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42629:5;:15;42494:158::o;40520:41::-;;;;;;;;;;;;;;;:::o;8197:134::-;-1:-1:-1;;;;;8296:18:0;;;8269:7;8296:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8197:134::o;42660:91::-;30490:9;:7;:9::i;:::-;30482:54;;;;;-1:-1:-1;;;;;30482:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30482:54:0;;;;;;;;;;;;;;;42724:11;:19;;-1:-1:-1;;42724:19:0;;;;;;;;;;42660:91::o;42759:129::-;30490:9;:7;:9::i;:::-;30482:54;;;;;-1:-1:-1;;;;;30482:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30482:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42840:33:0;;;;;:16;:33;;;;;:40;;-1:-1:-1;;42840:40:0;42876:4;42840:40;;;42759:129::o;41496:106::-;41552:4;41576:18;41588:5;;41576;:11;;:18;;;;:::i;31386:109::-;30490:9;:7;:9::i;:::-;30482:54;;;;;-1:-1:-1;;;;;30482:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30482:54:0;;;;;;;;;;;;;;;31459:28;31478:8;31459:18;:28::i;8478:152::-;8544:4;8561:39;8570:12;:10;:12::i;:::-;8584:7;8593:6;8561:8;:39::i;1447:508::-;1864:4;1910:17;1942:7;1447:508;:::o;11279:471::-;-1:-1:-1;;;;;11377:20:0;;11369:70;;;;-1:-1:-1;;;;;11369:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11458:23:0;;11450:71;;;;-1:-1:-1;;;;;11450:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11554;11576:6;11554:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11554:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;11534:17:0;;;;;;;:9;:17;;;;;;:91;;;;11659:20;;;;;;;:32;;11684:6;11659:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;11636:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;11707:35;;;;;;;11636:20;;11707:35;;;;;;;;;;;;;11279:471;;;:::o;43037:553::-;-1:-1:-1;;;;;43142:20:0;;43134:70;;;;-1:-1:-1;;;;;43134:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43223:23:0;;43215:71;;;;-1:-1:-1;;;;;43215:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43299:19;43321:21;43335:6;43321:13;:21::i;:::-;43299:43;-1:-1:-1;43353:24:0;43380:23;:6;43299:43;43380:23;:10;:23;:::i;:::-;43353:50;;43416:52;43426:6;43442:11;;;;;;;;;-1:-1:-1;;;;;43442:11:0;43456;43416:9;:52::i;:::-;43479:46;43489:6;43497:9;43508:16;43479:9;:46::i;:::-;43536:11;;;;;;;;;-1:-1:-1;;;;;43536:11:0;-1:-1:-1;;;;;43536:33:0;;43570:11;43536:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43536:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43536:46:0;;;;43037:553;;;;;:::o;25741:192::-;25827:7;25863:12;25855:6;;;;25847:29;;;;-1:-1:-1;;;;;25847:29: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;25847:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;25899:5:0;;;25741:192::o;19002:103::-;1046:12;;;;;;;;:31;;;1062:15;:13;:15::i;:::-;1046:47;;;-1:-1:-1;1082:11:0;;;;1081:12;1046:47;1038:106;;;;-1:-1:-1;;;;;1038:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:19;1176:12;;;;;;1175:13;1195:83;;;;1224:12;:19;;-1:-1:-1;;;;1224:19:0;;;;;1252:18;1239:4;1252:18;;;1195:83;19068:29;19090:6;19068:21;:29::i;:::-;1300:14;1296:57;;;1340:5;1325:20;;-1:-1:-1;;1325:20:0;;;19002:103;;:::o;18523:130::-;18583:24;:8;18599:7;18583:24;:15;:24;:::i;:::-;18623:22;;-1:-1:-1;;;;;18623:22:0;;;;;;;;18523:130;:::o;18393:122::-;18450:21;:8;18463:7;18450:21;:12;:21;:::i;:::-;18487:20;;-1:-1:-1;;;;;18487:20:0;;;;;;;;18393:122;:::o;23010:101::-;1046:12;;;;;;;;:31;;;1062:15;:13;:15::i;:::-;1046:47;;;-1:-1:-1;1082:11:0;;;;1081:12;1046:47;1038:106;;;;-1:-1:-1;;;;;1038:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:19;1176:12;;;;;;1175:13;1195:83;;;;1224:12;:19;;-1:-1:-1;;;;1224:19:0;;;;;1252:18;1239:4;1252:18;;;1195:83;23076:27;23096:6;23076:19;:27::i;20393:130::-;20453:24;:8;20469:7;20453:24;:15;:24;:::i;:::-;20493:22;;-1:-1:-1;;;;;20493:22:0;;;;;;;;20393:130;:::o;20263:122::-;20320:21;:8;20333:7;20320:21;:12;:21;:::i;:::-;20357:20;;-1:-1:-1;;;;;20357:20:0;;;;;;;;20263:122;:::o;31601:229::-;-1:-1:-1;;;;;31675:22:0;;31667:73;;;;-1:-1:-1;;;;;31667:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31777:6;;31756:38;;-1:-1:-1;;;;;31756:38:0;;;;31777:6;;31756:38;;31777:6;;31756:38;31805:6;:17;;-1:-1:-1;;31805:17:0;-1:-1:-1;;;;;31805:17:0;;;;;;;;;;31601:229::o;9815:210::-;9895:4;9912:83;9921:12;:10;:12::i;:::-;9935:7;9944:50;9983:10;9944:11;:25;9956:12;:10;:12::i;:::-;-1:-1:-1;;;;;9944:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;9944:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;9912:8;:83::i;2868:98::-;2948:10;2868:98;:::o;12031:308::-;-1:-1:-1;;;;;12107:21:0;;12099:65;;;;;-1:-1:-1;;;;;12099:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12192:12;;:24;;12209:6;12192:24;:16;:24;:::i;:::-;12177:12;:39;-1:-1:-1;;;;;12248:18:0;;;;;;:9;:18;;;;;;:30;;12271:6;12248:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;12227:18:0;;;;;;:9;:18;;;;;;;;:51;;;;12294:37;;;;;;;12227:18;;;;12294:37;;;;;;;;;;12031:308;;:::o;12671:348::-;-1:-1:-1;;;;;12747:21:0;;12739:67;;;;-1:-1:-1;;;;;12739:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12840:68;12863:6;12840:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12840:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;12819:18:0;;;;;;:9;:18;;;;;:89;12934:12;;:24;;12951:6;12934:24;:16;:24;:::i;:::-;12919:12;:39;12974:37;;;;;;;;13000:1;;-1:-1:-1;;;;;12974:37:0;;;;;;;;;;;;12671:348;;:::o;17358:203::-;17430:4;-1:-1:-1;;;;;17455:21:0;;17447:68;;;;-1:-1:-1;;;;;17447:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17533:20:0;:11;:20;;;;;;;;;;;;;;;17358:203::o;13983:232::-;14055:22;14061:7;14070:6;14055:5;:22::i;:::-;14088:119;14097:7;14106:12;:10;:12::i;:::-;14120:86;14159:6;14120:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14120:20:0;;;;;;:11;:20;;;;;;14141:12;:10;:12::i;:::-;-1:-1:-1;;;;;14120:34:0;;;;;;;;;;;;-1:-1:-1;14120:34:0;;;:86;;:38;:86;:::i;10528:261::-;10613:4;10630:129;10639:12;:10;:12::i;:::-;10653:7;10662:96;10701:15;10662:96;;;;;;;;;;;;;;;;;:11;:25;10674:12;:10;:12::i;:::-;-1:-1:-1;;;;;10662:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10662:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;31987:151::-;32044:4;32065:8;32061:22;;-1:-1:-1;32082:1:0;32075:8;;32061:22;32101:29;31973:5;32101:11;:3;32109:2;32101:11;:7;:11;:::i;:::-;:15;:29;:15;:29;:::i;13459:338::-;-1:-1:-1;;;;;13553:19:0;;13545:68;;;;-1:-1:-1;;;;;13545:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13632:21:0;;13624:68;;;;-1:-1:-1;;;;;13624:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13705:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13757:32;;;;;;;;;;;;;;;;;13459:338;;;:::o;24812:181::-;24870:7;24902:5;;;24926:6;;;;24918:46;;;;;-1:-1:-1;;;;;24918:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;25268:136;25326:7;25353:43;25357:1;25360;25353:43;;;;;;;;;;;;;;;;;:3;:43::i;17796:141::-;1046:12;;;;;;;;:31;;;1062:15;:13;:15::i;:::-;1046:47;;;-1:-1:-1;1082:11:0;;;;1081:12;1046:47;1038:106;;;;-1:-1:-1;;;;;1038:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:19;1176:12;;;;;;1175:13;1195:83;;;;1224:12;:19;;-1:-1:-1;;;;1224:19:0;;;;;1252:18;1239:4;1252:18;;;1195:83;17867:16;17876:6;17867:8;:16::i;:::-;17862:68;;17900:18;17911:6;17900:10;:18::i;17080:183::-;17160:18;17164:4;17170:7;17160:3;:18::i;:::-;17152:64;;;;-1:-1:-1;;;;;17152:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17227:20:0;17250:5;17227:20;;;;;;;;;;;:28;;-1:-1:-1;;17227:28:0;;;17080:183::o;16822:178::-;16900:18;16904:4;16910:7;16900:3;:18::i;:::-;16899:19;16891:63;;;;;-1:-1:-1;;;;;16891:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16965:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16965:27:0;16988:4;16965:27;;;16822:178::o;21494:131::-;1046:12;;;;;;;;:31;;;1062:15;:13;:15::i;:::-;1046:47;;;-1:-1:-1;1082:11:0;;;;1081:12;1046:47;1038:106;;;;-1:-1:-1;;;;;1038:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:19;1176:12;;;;;;1175:13;1195:83;;;;1224:12;:19;;-1:-1:-1;;;;1224:19:0;;;;;1252:18;1239:4;1252:18;;;1195:83;21560:29;21582:6;21560:21;:29::i;:::-;21602:7;:15;;-1:-1:-1;;21602:15:0;;;1296:57;;;;1340:5;1325:20;;-1:-1:-1;;1325:20:0;;;21494:131;;:::o;26184:471::-;26242:7;26487:6;26483:47;;-1:-1:-1;26517:1:0;26510:8;;26483:47;26554:5;;;26558:1;26554;:5;:1;26578:5;;;;;:10;26570:56;;;;-1:-1:-1;;;;;26570:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27123:132;27181:7;27208:39;27212:1;27215;27208:39;;;;;;;;;;;;;;;;;:3;:39::i;19666:141::-;1046:12;;;;;;;;:31;;;1062:15;:13;:15::i;:::-;1046:47;;;-1:-1:-1;1082:11:0;;;;1081:12;1046:47;1038:106;;;;-1:-1:-1;;;;;1038:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1153:19;1176:12;;;;;;1175:13;1195:83;;;;1224:12;:19;;-1:-1:-1;;;;1224:19:0;;;;;1252:18;1239:4;1252:18;;;1195:83;19737:16;19746:6;19737:8;:16::i;:::-;19732:68;;19770:18;19781:6;19770:10;:18::i;27785:345::-;27871:7;27973:12;27966:5;27958:28;;;;-1:-1:-1;;;;;27958:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;27958:28:0;;27997:9;28013:1;28009;:5;;;;;;;27785:345;-1:-1:-1;;;;;27785:345:0:o;40195:3398::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40195:3398:0;;;-1:-1:-1;40195:3398:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://1fb33f7d9103da86c18262c412b5dc6796df6535aaabd076778d376dd8382c23
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.