Contract
0x7a6e4e3cc2ac9924605dca4ba31d1831c84b44ae
2
[ Download CSV Export ]
OVERVIEW
2omb.finance is an incentive-oriented, algorithmic stablecoin protocol that utilizes seigniorage mechanisms that aims to bring $2OMB to a 1:1 price peg with Fantom.
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x3222a9e8cabfb39f14ddd1741cb359ff7a55b3db9ddf7d4e57e3c684e5b8891e | 26832966 | 450 days 14 hrs ago | 2omb Finance: Deployer | Contract Creation | 0 FTM |
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x7dd79814a53e64b178bd4309ab45655c1dc4db20
Contract Name:
_2OMB_Token
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-12-29 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _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 virtual 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 virtual 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _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 internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @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). */ abstract contract ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } // File contracts/lib/SafeMath8.sol pragma solidity 0.6.12; /** * @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 SafeMath8 { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint8 a, uint8 b) internal pure returns (uint8) { uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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. */ function sub(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b <= a, errorMessage); uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { // 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; } uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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. */ function div(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b > 0, errorMessage); uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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. */ function mod(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b != 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/GSN/[email protected] pragma solidity >=0.6.0 <0.8.0; // File @openzeppelin/contracts/access/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File contracts/owner/Operator.sol pragma solidity 0.6.12; contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() internal { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } } // File contracts/interfaces/IOracle.sol pragma solidity 0.6.12; interface IOracle { function update() external; function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut); function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut); } // File contracts/2omb.sol pragma solidity 0.6.12; contract _2OMB_Token is ERC20Burnable, Operator { using SafeMath8 for uint8; using SafeMath for uint256; // Initial distribution for the first 24h genesis pools uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 20000 ether; // Initial distribution for the day 2-5 2OMB-WETH LP -> 2OMB pool uint256 public constant INITIAL_2OMB_POOL_DISTRIBUTION = 140000 ether; // Distribution for airdrops wallet // Have the rewards been distributed to the pools bool public rewardPoolDistributed = false; /* ================= Taxation =============== */ // Address of the Oracle address public two_ombOracle; // Address of the Tax Office address public taxOffice; // Current tax rate uint256 public taxRate; // Price threshold below which taxes will get burned uint256 public burnThreshold = 1.10e18; // Address of the tax collector wallet address public taxCollectorAddress; // Should the taxes be calculated using the tax tiers bool public autoCalculateTax; // Tax Tiers uint256[] public taxTiersTwaps = [0, 5e17, 6e17, 7e17, 8e17, 9e17, 9.5e17, 1e18, 1.05e18, 1.10e18, 1.20e18, 1.30e18, 1.40e18, 1.50e18]; uint256[] public taxTiersRates = [2000, 1900, 1800, 1700, 1600, 1500, 1500, 1500, 1500, 1400, 900, 400, 200, 100]; // Sender addresses excluded from Tax mapping(address => bool) public excludedAddresses; event TaxOfficeTransferred(address oldAddress, address newAddress); modifier onlyTaxOffice() { require(taxOffice == msg.sender, "Caller is not the tax office"); _; } modifier onlyOperatorOrTaxOffice() { require(isOperator() || taxOffice == msg.sender, "Caller is not the operator or the tax office"); _; } /** * @notice Constructs the 2OMB ERC-20 contract. */ constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("2omb Token", "2OMB") { // Mints 1 2OMB to contract creator for initial pool setup require(_taxRate < 10000, "tax equal or bigger to 100%"); require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address"); excludeAddress(address(this)); _mint(msg.sender, 1 ether); taxRate = _taxRate; taxCollectorAddress = _taxCollectorAddress; } /* ============= Taxation ============= */ function getTaxTiersTwapsCount() public view returns (uint256 count) { return taxTiersTwaps.length; } function getTaxTiersRatesCount() public view returns (uint256 count) { return taxTiersRates.length; } function isAddressExcluded(address _address) public view returns (bool) { return excludedAddresses[_address]; } function setTaxTiersTwap(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < getTaxTiersTwapsCount(), "Index has to lower than count of tax tiers"); if (_index > 0) { require(_value > taxTiersTwaps[_index - 1]); } if (_index < getTaxTiersTwapsCount().sub(1)) { require(_value < taxTiersTwaps[_index + 1]); } taxTiersTwaps[_index] = _value; return true; } function setTaxTiersRate(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < getTaxTiersRatesCount(), "Index has to lower than count of tax tiers"); taxTiersRates[_index] = _value; return true; } function setBurnThreshold(uint256 _burnThreshold) public onlyTaxOffice returns (bool) { burnThreshold = _burnThreshold; } function _get2ombPrice() internal view returns (uint256 _2ombPrice) { try IOracle(two_ombOracle).consult(address(this), 1e18) returns (uint144 _price) { return uint256(_price); } catch { revert("2omb: failed to fetch 2OMB price from Oracle"); } } function _updateTaxRate(uint256 _2ombPrice) internal returns (uint256) { if (autoCalculateTax) { for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) { if (_2ombPrice >= taxTiersTwaps[tierId]) { require(taxTiersRates[tierId] < 10000, "tax equal or bigger to 100%"); taxRate = taxTiersRates[tierId]; return taxTiersRates[tierId]; } } } } function enableAutoCalculateTax() public onlyTaxOffice { autoCalculateTax = true; } function disableAutoCalculateTax() public onlyTaxOffice { autoCalculateTax = false; } function set2ombOracle(address _2ombOracle) public onlyOperatorOrTaxOffice { require(_2ombOracle != address(0), "oracle address cannot be 0 address"); two_ombOracle = _2ombOracle; } function setTaxOffice(address _taxOffice) public onlyOperatorOrTaxOffice { require(_taxOffice != address(0), "tax office address cannot be 0 address"); emit TaxOfficeTransferred(taxOffice, _taxOffice); taxOffice = _taxOffice; } function setTaxCollectorAddress(address _taxCollectorAddress) public onlyTaxOffice { require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address"); taxCollectorAddress = _taxCollectorAddress; } function setTaxRate(uint256 _taxRate) public onlyTaxOffice { require(!autoCalculateTax, "auto calculate tax cannot be enabled"); require(_taxRate < 10000, "tax equal or bigger to 100%"); taxRate = _taxRate; } function excludeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) { require(!excludedAddresses[_address], "address can't be excluded"); excludedAddresses[_address] = true; return true; } function includeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) { require(excludedAddresses[_address], "address can't be included"); excludedAddresses[_address] = false; return true; } /** * @notice Operator mints 2OMB to a recipient * @param recipient_ The address of recipient * @param amount_ The amount of 2OMB to mint to * @return whether the process has been done */ function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool) { uint256 balanceBefore = balanceOf(recipient_); _mint(recipient_, amount_); uint256 balanceAfter = balanceOf(recipient_); return balanceAfter > balanceBefore; } function burn(uint256 amount) public override { super.burn(amount); } function burnFrom(address account, uint256 amount) public override onlyOperator { super.burnFrom(account, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { uint256 currentTaxRate = 0; bool burnTax = false; if (autoCalculateTax) { uint256 current2ombPrice = _get2ombPrice(); currentTaxRate = _updateTaxRate(current2ombPrice); if (current2ombPrice < burnThreshold) { burnTax = true; } } if (currentTaxRate == 0 || excludedAddresses[sender]) { _transfer(sender, recipient, amount); } else { _transferWithTax(sender, recipient, amount, burnTax); } _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _transferWithTax( address sender, address recipient, uint256 amount, bool burnTax ) internal returns (bool) { uint256 taxAmount = amount.mul(taxRate).div(10000); uint256 amountAfterTax = amount.sub(taxAmount); if (burnTax) { // Burn tax super.burnFrom(sender, taxAmount); } else { // Transfer tax to tax collector _transfer(sender, taxCollectorAddress, taxAmount); } // Transfer amount after tax to recipient _transfer(sender, recipient, amountAfterTax); return true; } /** * @notice distribute to reward pool (only once) */ function distributeReward( address _genesisPool, address _2ombPool, address _airdropWallet ) external onlyOperator { require(!rewardPoolDistributed, "only can distribute once"); require(_genesisPool != address(0), "!_genesisPool"); require(_2ombPool != address(0), "!_2ombPool"); require(_airdropWallet != address(0), "!_airdropWallet"); rewardPoolDistributed = true; _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION); _mint(_2ombPool, INITIAL_2OMB_POOL_DISTRIBUTION); } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { _token.transfer(_to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"},{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"oldAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TaxOfficeTransferred","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"},{"inputs":[],"name":"INITIAL_2OMB_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_GENESIS_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisPool","type":"address"},{"internalType":"address","name":"_2ombPool","type":"address"},{"internalType":"address","name":"_airdropWallet","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_2ombOracle","type":"address"}],"name":"set2ombOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnThreshold","type":"uint256"}],"name":"setBurnThreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"name":"setTaxCollectorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxOffice","type":"address"}],"name":"setTaxOffice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollectorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxOffice","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"two_ombOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6006805460ff60a01b19169055670f43fc2c04ee0000600a819055610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd6290000610180526101a0919091526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000d790600c90600e62000653565b50604080516101c0810182526107d0815261076c6020820152610708918101919091526106a4606082015261064060808201526105dc60a0820181905260c0820181905260e0820181905261010082015261057861012082015261038461014082015261019061016082015260c861018082015260646101a08201526200016390600d90600e620006ae565b503480156200017157600080fd5b506040516200303138038062003031833981810160405260408110156200019757600080fd5b508051602091820151604080518082018252600a8152691937b6b1102a37b5b2b760b11b818601908152825180840190935260048352631927a6a160e11b958301959095528051939492939092620001f39160039190620006f2565b50805162000209906004906020840190620006f2565b50506005805460ff1916601217905550600062000225620003ba565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000285620003ba565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3612710821062000328576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b6001600160a01b0381166200036f5760405162461bcd60e51b815260040180806020018281038252602e81526020018062002fd7602e913960400191505060405180910390fd5b6200037a30620003be565b506200038f33670de0b6b3a7640000620004b5565b600991909155600b80546001600160a01b0319166001600160a01b039092169190911790556200077c565b3390565b6000620003ca620005c4565b80620003e057506008546001600160a01b031633145b6200041d5760405162461bcd60e51b815260040180806020018281038252602c81526020018062003005602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff16156200048c576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b03821662000511576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200051f60008383620005ec565b6200053b81600254620005f160201b62001aa01790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200056e91839062001aa0620005f1821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b0316620005dd620003ba565b6001600160a01b031614905090565b505050565b6000828201838110156200064c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b8280548282559060005260206000209081019282156200069c579160200282015b828111156200069c57825182906001600160401b031690559160200191906001019062000674565b50620006aa92915062000765565b5090565b8280548282559060005260206000209081019282156200069c579160200282015b828111156200069c578251829061ffff16905591602001919060010190620006cf565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200073557805160ff19168380011785556200069c565b828001600101855582156200069c579182015b828111156200069c57825182559160200191906001019062000748565b5b80821115620006aa576000815560010162000766565b61284b806200078c6000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c806370a0823111610167578063a6431bba116100ce578063cf011b2611610087578063cf011b261461079f578063dd62ed3e146107c5578063ebca1bd9146107f3578063ee2a953514610819578063f2fde38b14610821578063ff87fc7c14610847576102a0565b8063a6431bba146106fa578063a9059cbb14610702578063b87c5a4a1461072e578063c3bdf61314610754578063c6d69a301461075c578063ceec25e914610779576102a0565b80638da5cb5b116101205780638da5cb5b1461067357806393995d4b1461067b57806395d89b41146106a15780639662676c146106a95780639d6b5f21146106b1578063a457c2d7146106ce576102a0565b806370a0823114610601578063715018a614610627578063771a3a1d1461062f57806379cc6790146106375780638d048096146106635780638d3cc8181461066b576102a0565b806342c6b4f11161020b578063570ca735116101c4578063570ca735146105805780635a67bdf1146105885780635c29908d1461059057806365bbacd9146105ad57806366206ce9146105b557806369356d47146105db576102a0565b806342c6b4f1146104dd5780634456eda2146104fa5780634e20a02c146105025780634f6d38d01461050a578063521181d51461051257806354575af41461054a576102a0565b80633758e6ce1161025d5780633758e6ce146103f8578063395093511461041e5780633e5f13d41461044a5780633f07d76a1461046e57806340c10f191461049457806342966c68146104c0576102a0565b806306fdde03146102a5578063095ea7b31461032257806318160ddd1461036257806323b872dd1461037c57806329605e77146103b2578063313ce567146103da575b600080fd5b6102ad61084f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b0381351690602001356108e6565b604080519115158252519081900360200190f35b61036a610904565b60408051918252519081900360200190f35b61034e6004803603606081101561039257600080fd5b506001600160a01b0381358116916020810135909116906040013561090a565b6103d8600480360360208110156103c857600080fd5b50356001600160a01b03166109e5565b005b6103e2610a65565b6040805160ff9092168252519081900360200190f35b61034e6004803603602081101561040e57600080fd5b50356001600160a01b0316610a6e565b61034e6004803603604081101561043457600080fd5b506001600160a01b038135169060200135610b63565b610452610bb1565b604080516001600160a01b039092168252519081900360200190f35b6103d86004803603602081101561048457600080fd5b50356001600160a01b0316610bc0565b61034e600480360360408110156104aa57600080fd5b506001600160a01b038135169060200135610cc7565b6103d8600480360360208110156104d657600080fd5b5035610d41565b61036a600480360360208110156104f357600080fd5b5035610d4a565b61034e610d68565b61036a610d8e565b61036a610d9c565b6103d86004803603606081101561052857600080fd5b506001600160a01b038135811691602081013582169160409091013516610da2565b6103d86004803603606081101561056057600080fd5b506001600160a01b03813581169160208101359160409091013516610f6a565b61045261103b565b61045261104a565b61036a600480360360208110156105a657600080fd5b5035611059565b6103d8611066565b61034e600480360360408110156105cb57600080fd5b5060ff81351690602001356110c2565b6103d8600480360360208110156105f157600080fd5b50356001600160a01b03166111f8565b61036a6004803603602081101561061757600080fd5b50356001600160a01b03166112ac565b6103d86112c7565b61036a61138b565b6103d86004803603604081101561064d57600080fd5b506001600160a01b038135169060200135611391565b61036a6113e8565b61034e6113f6565b610452611406565b61034e6004803603602081101561069157600080fd5b50356001600160a01b031661141a565b6102ad611506565b61034e611567565b61034e600480360360208110156106c757600080fd5b5035611577565b61034e600480360360408110156106e457600080fd5b506001600160a01b0381351690602001356115d0565b61036a611638565b61034e6004803603604081101561071857600080fd5b506001600160a01b03813516906020013561163e565b61034e6004803603604081101561074457600080fd5b5060ff8135169060200135611652565b6104526116fb565b6103d86004803603602081101561077257600080fd5b503561170a565b6103d86004803603602081101561078f57600080fd5b50356001600160a01b03166117fb565b61034e600480360360208110156107b557600080fd5b50356001600160a01b03166118ba565b61036a600480360360408110156107db57600080fd5b506001600160a01b03813581169160200135166118cf565b61034e6004803603602081101561080957600080fd5b50356001600160a01b03166118fa565b61036a611918565b6103d86004803603602081101561083757600080fd5b50356001600160a01b031661191e565b6103d8611a3e565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b505050505090505b90565b60006108fa6108f3611b01565b8484611b05565b5060015b92915050565b60025490565b600b5460009081908190600160a01b900460ff161561094b57600061092d611bf1565b905061093881611cc5565b9250600a5481101561094957600191505b505b81158061097057506001600160a01b0386166000908152600e602052604090205460ff165b1561098557610980868686611dd3565b610993565b61099186868684611f2e565b505b6109d98661099f611b01565b6109d48760405180606001604052806028815260200161264d602891396109cd8c6109c8611b01565b6118cf565b9190611fa7565b611b05565b50600195945050505050565b6109ed611b01565b6001600160a01b03166109fe611406565b6001600160a01b031614610a59576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a628161203e565b50565b60055460ff1690565b6000610a78610d68565b80610a8d57506008546001600160a01b031633145b610ac85760405162461bcd60e51b815260040180806020018281038252602c8152602001806127a1602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610b36576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b60006108fa610b70611b01565b846109d48560016000610b81611b01565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611aa0565b6008546001600160a01b031681565b610bc8610d68565b80610bdd57506008546001600160a01b031633145b610c185760405162461bcd60e51b815260040180806020018281038252602c8152602001806127a1602c913960400191505060405180910390fd5b6001600160a01b038116610c5d5760405162461bcd60e51b81526004018080602001828103825260268152602001806125ad6026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610d135760405162461bcd60e51b81526004018080602001828103825260248152602001806126c76024913960400191505060405180910390fd5b6000610d1e846112ac565b9050610d2a84846120db565b6000610d35856112ac565b91909111949350505050565b610a62816121cb565b600c8181548110610d5757fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610d7f611b01565b6001600160a01b031614905090565b69043c33c193756480000081565b600a5481565b6006546001600160a01b03163314610deb5760405162461bcd60e51b81526004018080602001828103825260248152602001806126c76024913960400191505060405180910390fd5b600654600160a01b900460ff1615610e4a576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038316610e95576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038216610edd576040805162461bcd60e51b815260206004820152600a6024820152690857cc9bdb58941bdbdb60b21b604482015290519081900360640190fd5b6001600160a01b038116610f2a576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b179055610f518369043c33c19375648000006120db565b610f6582691da56a4b0835bf8000006120db565b505050565b6006546001600160a01b03163314610fb35760405162461bcd60e51b81526004018080602001828103825260248152602001806126c76024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561100a57600080fd5b505af115801561101e573d6000803e3d6000fd5b505050506040513d602081101561103457600080fd5b5050505050565b6006546001600160a01b031690565b6007546001600160a01b031681565b600d8181548110610d5757fe5b6008546001600160a01b031633146110b3576040805162461bcd60e51b815260206004820152601c6024820152600080516020612567833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b03163314611112576040805162461bcd60e51b815260206004820152601c6024820152600080516020612567833981519152604482015290519081900360640190fd5b61111a611638565b8360ff161061115a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806126eb602a913960400191505060405180910390fd5b60ff83161561118c57600c6001840360ff168154811061117657fe5b9060005260206000200154821161118c57600080fd5b61119f6001611199611638565b906121dc565b8360ff1610156111d257600c8360010160ff16815481106111bc57fe5b906000526020600020015482106111d257600080fd5b81600c8460ff16815481106111e357fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314611245576040805162461bcd60e51b815260206004820152601c6024820152600080516020612567833981519152604482015290519081900360640190fd5b6001600160a01b03811661128a5760405162461bcd60e51b815260040180806020018281038252602e815260200180612675602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6112cf611b01565b6001600160a01b03166112e0611406565b6001600160a01b03161461133b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146113da5760405162461bcd60e51b81526004018080602001828103825260248152602001806126c76024913960400191505060405180910390fd5b6113e48282612239565b5050565b691da56a4b0835bf80000081565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b6000611424610d68565b8061143957506008546001600160a01b031633145b6114745760405162461bcd60e51b815260040180806020018281038252602c8152602001806127a1602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166114e1576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108db5780601f106108b0576101008083540402835291602001916108db565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146115c7576040805162461bcd60e51b815260206004820152601c6024820152600080516020612567833981519152604482015290519081900360640190fd5b600a9190915590565b60006108fa6115dd611b01565b846109d4856040518060600160405280602581526020016127f16025913960016000611607611b01565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fa7565b600c5490565b60006108fa61164b611b01565b8484611dd3565b6008546000906001600160a01b031633146116a2576040805162461bcd60e51b815260206004820152601c6024820152600080516020612567833981519152604482015290519081900360640190fd5b6116aa611918565b8360ff16106116ea5760405162461bcd60e51b815260040180806020018281038252602a8152602001806126eb602a913960400191505060405180910390fd5b81600d8460ff16815481106111e357fe5b600b546001600160a01b031681565b6008546001600160a01b03163314611757576040805162461bcd60e51b815260206004820152601c6024820152600080516020612567833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156117a05760405162461bcd60e51b81526004018080602001828103825260248152602001806127586024913960400191505060405180910390fd5b61271081106117f6576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b611803610d68565b8061181857506008546001600160a01b031633145b6118535760405162461bcd60e51b815260040180806020018281038252602c8152602001806127a1602c913960400191505060405180910390fd5b6001600160a01b0381166118985760405162461bcd60e51b81526004018080602001828103825260228152602001806127366022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b611926611b01565b6001600160a01b0316611937611406565b6001600160a01b031614611992576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166119d75760405162461bcd60e51b815260040180806020018281038252602681526020018061251f6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b03163314611a8b576040805162461bcd60e51b815260206004820152601c6024820152600080516020612567833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b600082820183811015611afa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316611b4a5760405162461bcd60e51b81526004018080602001828103825260248152602001806127cd6024913960400191505060405180910390fd5b6001600160a01b038216611b8f5760405162461bcd60e51b81526004018080602001828103825260228152602001806125456022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c4a57600080fd5b505afa925050508015611c6f57506040513d6020811015611c6a57600080fd5b505160015b611caa5760405162461bcd60e51b815260040180806020018281038252602c815260200180612600602c913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff1690506108e3565b600b54600090600160a01b900460ff1615610b5e576000611cf26001611ce9611638565b60ff1690612282565b90505b600c8160ff1681548110611d0557fe5b90600052602060002001548310611dca57612710600d8260ff1681548110611d2957fe5b906000526020600020015410611d86576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611d9657fe5b9060005260206000200154600981905550600d8160ff1681548110611db757fe5b9060005260206000200154915050610b5e565b60001901611cf5565b6001600160a01b038316611e185760405162461bcd60e51b815260040180806020018281038252602581526020018061277c6025913960400191505060405180910390fd5b6001600160a01b038216611e5d5760405162461bcd60e51b81526004018080602001828103825260238152602001806124da6023913960400191505060405180910390fd5b611e68838383610f65565b611ea581604051806060016040528060268152602001612587602691396001600160a01b0386166000908152602081905260409020549190611fa7565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ed49082611aa0565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f52612710611f4c600954876122c490919063ffffffff16565b9061231d565b90506000611f6085836121dc565b90508315611f7757611f728783612239565b611f8f565b600b54611f8f9088906001600160a01b031684611dd3565b611f9a878783611dd3565b5060019695505050505050565b600081848411156120365760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ffb578181015183820152602001611fe3565b50505050905090810190601f1680156120285780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120835760405162461bcd60e51b815260040180806020018281038252602d8152602001806125d3602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216612136576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61214260008383610f65565b60025461214f9082611aa0565b6002556001600160a01b0382166000908152602081905260409020546121759082611aa0565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a626121d6611b01565b82612384565b600082821115612233576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000612264826040518060600160405280602481526020016126a3602491396109cd866109c8611b01565b905061227883612272611b01565b83611b05565b610f658383612384565b6000611afa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612480565b6000826122d3575060006108fe565b828202828482816122e057fe5b0414611afa5760405162461bcd60e51b815260040180806020018281038252602181526020018061262c6021913960400191505060405180910390fd5b6000808211612373576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161237c57fe5b049392505050565b6001600160a01b0382166123c95760405162461bcd60e51b81526004018080602001828103825260218152602001806127156021913960400191505060405180910390fd5b6123d582600083610f65565b612412816040518060600160405280602281526020016124fd602291396001600160a01b0385166000908152602081905260409020549190611fa7565b6001600160a01b03831660009081526020819052604090205560025461243890826121dc565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff16111582906120365760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ffb578181015183820152602001611fe356fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72326f6d623a206661696c656420746f20666574636820324f4d422070726963652066726f6d204f7261636c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201892fc30730137592fa4d471abcc95687bb24af1a5acfb6b854c785fcafeb8a864736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f66666963650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000219e36c1c24dd20423c70290909197c4dd52dcb6
Deployed ByteCode Sourcemap
33670:9515:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13432:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15578:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15578:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14531:108;;;:::i;:::-;;;;;;;;;;;;;;;;40820:850;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40820:850:0;;;;;;;;;;;;;;;;;:::i;32874:115::-;;;;;;;;;;;;;;;;-1:-1:-1;32874:115:0;-1:-1:-1;;;;;32874:115:0;;:::i;:::-;;14375:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39574:240;;;;;;;;;;;;;;;;-1:-1:-1;39574:240:0;-1:-1:-1;;;;;39574:240:0;;:::i;16959:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16959:218:0;;;;;;;;:::i;34379:24::-;;;:::i;:::-;;;;-1:-1:-1;;;;;34379:24:0;;;;;;;;;;;;;;38803:259;;;;;;;;;;;;;;;;-1:-1:-1;38803:259:0;-1:-1:-1;;;;;38803:259:0;;:::i;40293:290::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40293:290:0;;;;;;;;:::i;40591:83::-;;;;;;;;;;;;;;;;-1:-1:-1;40591:83:0;;:::i;34770:134::-;;;;;;;;;;;;;;;;-1:-1:-1;34770:134:0;;:::i;32766:100::-;;;:::i;33853:71::-;;;:::i;34524:38::-;;;:::i;42412:575::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42412:575:0;;;;;;;;;;;;;;;;;;;:::i;42995:187::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42995:187:0;;;;;;;;;;;;;;;;;:::i;32538:85::-;;;:::i;34310:28::-;;;:::i;34911:113::-;;;;;;;;;;;;;;;;-1:-1:-1;34911:113:0;;:::i;38484:99::-;;;:::i;36520:545::-;;;;;;;;;;;;;;;;-1:-1:-1;36520:545:0;;;;;;;;;:::i;39070:248::-;;;;;;;;;;;;;;;;-1:-1:-1;39070:248:0;-1:-1:-1;;;;;39070:248:0;;:::i;14702:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14702:127:0;-1:-1:-1;;;;;14702:127:0;;:::i;31601:148::-;;;:::i;34437:22::-;;;:::i;40682:130::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40682:130:0;;;;;;;;:::i;34002:69::-;;;:::i;34715:28::-;;;:::i;30950:87::-;;;:::i;39822:240::-;;;;;;;;;;;;;;;;-1:-1:-1;39822:240:0;-1:-1:-1;;;;;39822:240:0;;:::i;13642:95::-;;;:::i;34176:41::-;;;:::i;37405:135::-;;;;;;;;;;;;;;;;-1:-1:-1;37405:135:0;;:::i;17680:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17680:269:0;;;;;;;;:::i;36141:115::-;;;:::i;15042:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15042:175:0;;;;;;;;:::i;37073:324::-;;;;;;;;;;;;;;;;-1:-1:-1;37073:324:0;;;;;;;;;:::i;34613:34::-;;;:::i;39326:240::-;;;;;;;;;;;;;;;;-1:-1:-1;39326:240:0;;:::i;38591:204::-;;;;;;;;;;;;;;;;-1:-1:-1;38591:204:0;-1:-1:-1;;;;;38591:204:0;;:::i;35076:49::-;;;;;;;;;;;;;;;;-1:-1:-1;35076:49:0;-1:-1:-1;;;;;35076:49:0;;:::i;15280:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15280:151:0;;;;;;;;;;:::i;36387:125::-;;;;;;;;;;;;;;;;-1:-1:-1;36387:125:0;-1:-1:-1;;;;;36387:125:0;;:::i;36264:115::-;;;:::i;31904:244::-;;;;;;;;;;;;;;;;-1:-1:-1;31904:244:0;-1:-1:-1;;;;;31904:244:0;;:::i;38379:97::-;;;:::i;13432:91::-;13510:5;13503:12;;;;;;;;-1:-1:-1;;13503:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13477:13;;13503:12;;13510:5;;13503:12;;13510:5;13503:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13432:91;;:::o;15578:169::-;15661:4;15678:39;15687:12;:10;:12::i;:::-;15701:7;15710:6;15678:8;:39::i;:::-;-1:-1:-1;15735:4:0;15578:169;;;;;:::o;14531:108::-;14619:12;;14531:108;:::o;40820:850::-;41043:16;;40952:4;;;;;;-1:-1:-1;;;41043:16:0;;;;41039:256;;;41076:24;41103:15;:13;:15::i;:::-;41076:42;;41150:32;41165:16;41150:14;:32::i;:::-;41133:49;;41220:13;;41201:16;:32;41197:87;;;41264:4;41254:14;;41197:87;41039:256;;41311:19;;;:48;;-1:-1:-1;;;;;;41334:25:0;;;;;;:17;:25;;;;;;;;41311:48;41307:202;;;41376:36;41386:6;41394:9;41405:6;41376:9;:36::i;:::-;41307:202;;;41445:52;41462:6;41470:9;41481:6;41489:7;41445:16;:52::i;:::-;;41307:202;41521:119;41530:6;41538:12;:10;:12::i;:::-;41552:87;41588:6;41552:87;;;;;;;;;;;;;;;;;:31;41562:6;41570:12;:10;:12::i;:::-;41552:9;:31::i;:::-;:35;:87;:35;:87::i;:::-;41521:8;:119::i;:::-;-1:-1:-1;41658:4:0;;40820:850;-1:-1:-1;;;;;40820:850:0:o;32874:115::-;31181:12;:10;:12::i;:::-;-1:-1:-1;;;;;31170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31170:23:0;;31162:68;;;;;-1:-1:-1;;;31162:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32950:31:::1;32968:12;32950:17;:31::i;:::-;32874:115:::0;:::o;14375:91::-;14449:9;;;;14375:91;:::o;39574:240::-;39656:4;35391:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35407:9:0;;-1:-1:-1;;;;;35407:9:0;35420:10;35407:23;35391:39;35383:96;;;;-1:-1:-1;;;35383:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39682:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39681:28;39673:66;;;::::0;;-1:-1:-1;;;39673:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;39750:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;39750:34:0::1;39780:4;39750:34:::0;;::::1;::::0;;;35490:1:::1;39574:240:::0;;;:::o;16959:218::-;17047:4;17064:83;17073:12;:10;:12::i;:::-;17087:7;17096:50;17135:10;17096:11;:25;17108:12;:10;:12::i;:::-;-1:-1:-1;;;;;17096:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17096:25:0;;;:34;;;;;;;;;;;:38;:50::i;34379:24::-;;;-1:-1:-1;;;;;34379:24:0;;:::o;38803:259::-;35391:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35407:9:0;;-1:-1:-1;;;;;35407:9:0;35420:10;35407:23;35391:39;35383:96;;;;-1:-1:-1;;;35383:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38895:24:0;::::1;38887:75;;;;-1:-1:-1::0;;;38887:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38999:9;::::0;38978:43:::1;::::0;;-1:-1:-1;;;;;38999:9:0;;::::1;38978:43:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;39032:9;:22:::0;;-1:-1:-1;;;;;;39032:22:0::1;-1:-1:-1::0;;;;;39032:22:0;;;::::1;::::0;;;::::1;::::0;;38803:259::o;40293:290::-;32674:9;;40373:4;;-1:-1:-1;;;;;32674:9:0;32687:10;32674:23;32666:72;;;;-1:-1:-1;;;32666:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40390:21:::1;40414;40424:10;40414:9;:21::i;:::-;40390:45;;40446:26;40452:10;40464:7;40446:5;:26::i;:::-;40483:20;40506:21;40516:10;40506:9;:21::i;:::-;40547:28:::0;;;::::1;::::0;40293:290;-1:-1:-1;;;;40293:290:0:o;40591:83::-;40648:18;40659:6;40648:10;:18::i;34770:134::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34770:134:0;:::o;32766:100::-;32849:9;;32809:4;;-1:-1:-1;;;;;32849:9:0;32833:12;:10;:12::i;:::-;-1:-1:-1;;;;;32833:25:0;;32826:32;;32766:100;:::o;33853:71::-;33913:11;33853:71;:::o;34524:38::-;;;;:::o;42412:575::-;32674:9;;-1:-1:-1;;;;;32674:9:0;32687:10;32674:23;32666:72;;;;-1:-1:-1;;;32666:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42579:21:::1;::::0;-1:-1:-1;;;42579:21:0;::::1;;;42578:22;42570:59;;;::::0;;-1:-1:-1;;;42570:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42648:26:0;::::1;42640:52;;;::::0;;-1:-1:-1;;;42640:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42640:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42711:23:0;::::1;42703:46;;;::::0;;-1:-1:-1;;;42703:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42703:46:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42768:28:0;::::1;42760:56;;;::::0;;-1:-1:-1;;;42760:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42760:56:0;;;;;;;;;;;;;::::1;;42827:21;:28:::0;;-1:-1:-1;;;;42827:28:0::1;-1:-1:-1::0;;;42827:28:0::1;::::0;;42866:54:::1;42872:12:::0;33913:11:::1;42866:5;:54::i;:::-;42931:48;42937:9;34059:12;42931:5;:48::i;:::-;42412:575:::0;;;:::o;42995:187::-;32674:9;;-1:-1:-1;;;;;32674:9:0;32687:10;32674:23;32666:72;;;;-1:-1:-1;;;32666:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43145:6:::1;-1:-1:-1::0;;;;;43145:15:0::1;;43161:3;43166:7;43145:29;;;;;;;;;;;;;-1:-1:-1::0;;;;;43145:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;42995:187:0:o;32538:85::-;32606:9;;-1:-1:-1;;;;;32606:9:0;32538:85;:::o;34310:28::-;;;-1:-1:-1;;;;;34310:28:0;;:::o;34911:113::-;;;;;;;;;;38484:99;35253:9;;-1:-1:-1;;;;;35253:9:0;35266:10;35253:23;35245:64;;;;;-1:-1:-1;;;35245:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35245:64:0;;;;;;;;;;;;;;;38551:16:::1;:24:::0;;-1:-1:-1;;;;38551:24:0::1;::::0;;38484:99::o;36520:545::-;35253:9;;36605:4;;-1:-1:-1;;;;;35253:9:0;35266:10;35253:23;35245:64;;;;;-1:-1:-1;;;35245:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35245:64:0;;;;;;;;;;;;;;;36703:23:::1;:21;:23::i;:::-;36694:6;:32;;;36686:87;;;;-1:-1:-1::0;;;36686:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36788:10;::::0;::::1;::::0;36784:86:::1;;36832:13;36855:1;36846:6;:10;36832:25;;;;;;;;;;;;;;;;;;36823:6;:34;36815:43;;;::::0;::::1;;36893:30;36921:1;36893:23;:21;:23::i;:::-;:27:::0;::::1;:30::i;:::-;36884:6;:39;;;36880:115;;;36957:13;36971:6;36980:1;36971:10;36957:25;;;;;;;;;;;;;;;;;;36948:6;:34;36940:43;;;::::0;::::1;;37029:6;37005:13;37019:6;37005:21;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;37053:4:0::1;36520:545:::0;;;;:::o;39070:248::-;35253:9;;-1:-1:-1;;;;;35253:9:0;35266:10;35253:23;35245:64;;;;;-1:-1:-1;;;35245:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35245:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39172:34:0;::::1;39164:93;;;;-1:-1:-1::0;;;39164:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39268:19;:42:::0;;-1:-1:-1;;;;;;39268:42:0::1;-1:-1:-1::0;;;;;39268:42:0;;;::::1;::::0;;;::::1;::::0;;39070:248::o;14702:127::-;-1:-1:-1;;;;;14803:18:0;14776:7;14803:18;;;;;;;;;;;;14702:127::o;31601:148::-;31181:12;:10;:12::i;:::-;-1:-1:-1;;;;;31170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31170:23:0;;31162:68;;;;;-1:-1:-1;;;31162:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31692:6:::1;::::0;31671:40:::1;::::0;31708:1:::1;::::0;31692:6:::1;::::0;::::1;-1:-1:-1::0;;;;;31692:6:0::1;::::0;31671:40:::1;::::0;31708:1;;31671:40:::1;31722:6;:19:::0;;-1:-1:-1;;;;;;31722:19:0::1;::::0;;31601:148::o;34437:22::-;;;;:::o;40682:130::-;32674:9;;-1:-1:-1;;;;;32674:9:0;32687:10;32674:23;32666:72;;;;-1:-1:-1;;;32666:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40773:31:::1;40788:7;40797:6;40773:14;:31::i;:::-;40682:130:::0;;:::o;34002:69::-;34059:12;34002:69;:::o;34715:28::-;;;-1:-1:-1;;;34715:28:0;;;;;:::o;30950:87::-;31023:6;;;;;-1:-1:-1;;;;;31023:6:0;;30950:87::o;39822:240::-;39904:4;35391:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35407:9:0;;-1:-1:-1;;;;;35407:9:0;35420:10;35407:23;35391:39;35383:96;;;;-1:-1:-1;;;35383:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39929:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;39921:65;;;::::0;;-1:-1:-1;;;39921:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;39997:27:0::1;40027:5;39997:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;39997:35:0::1;::::0;;-1:-1:-1;;39822:240:0:o;13642:95::-;13722:7;13715:14;;;;;;;;-1:-1:-1;;13715:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13689:13;;13715:14;;13722:7;;13715:14;;13722:7;13715:14;;;;;;;;;;;;;;;;;;;;;;;;34176:41;;;-1:-1:-1;;;34176:41:0;;;;;:::o;37405:135::-;35253:9;;37485:4;;-1:-1:-1;;;;;35253:9:0;35266:10;35253:23;35245:64;;;;;-1:-1:-1;;;35245:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35245:64:0;;;;;;;;;;;;;;;37502:13:::1;:30:::0;;;;37405:135;:::o;17680:269::-;17773:4;17790:129;17799:12;:10;:12::i;:::-;17813:7;17822:96;17861:15;17822:96;;;;;;;;;;;;;;;;;:11;:25;17834:12;:10;:12::i;:::-;-1:-1:-1;;;;;17822:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17822:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;36141:115::-;36228:13;:20;36141:115;:::o;15042:175::-;15128:4;15145:42;15155:12;:10;:12::i;:::-;15169:9;15180:6;15145:9;:42::i;37073:324::-;35253:9;;37158:4;;-1:-1:-1;;;;;35253:9:0;35266:10;35253:23;35245:64;;;;;-1:-1:-1;;;35245:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35245:64:0;;;;;;;;;;;;;;;37256:23:::1;:21;:23::i;:::-;37247:6;:32;;;37239:87;;;;-1:-1:-1::0;;;37239:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37361:6;37337:13;37351:6;37337:21;;;;;;;;;34613:34:::0;;;-1:-1:-1;;;;;34613:34:0;;:::o;39326:240::-;35253:9;;-1:-1:-1;;;;;35253:9:0;35266:10;35253:23;35245:64;;;;;-1:-1:-1;;;35245:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35245:64:0;;;;;;;;;;;;;;;39405:16:::1;::::0;-1:-1:-1;;;39405:16:0;::::1;;;39404:17;39396:66;;;;-1:-1:-1::0;;;39396:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39492:5;39481:8;:16;39473:56;;;::::0;;-1:-1:-1;;;39473:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39540:7;:18:::0;39326:240::o;38591:204::-;35391:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35407:9:0;;-1:-1:-1;;;;;35407:9:0;35420:10;35407:23;35391:39;35383:96;;;;-1:-1:-1;;;35383:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38685:25:0;::::1;38677:72;;;;-1:-1:-1::0;;;38677:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38760:13;:27:::0;;-1:-1:-1;;;;;;38760:27:0::1;-1:-1:-1::0;;;;;38760:27:0;;;::::1;::::0;;;::::1;::::0;;38591:204::o;35076:49::-;;;;;;;;;;;;;;;:::o;15280:151::-;-1:-1:-1;;;;;15396:18:0;;;15369:7;15396:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15280:151::o;36387:125::-;-1:-1:-1;;;;;36477:27:0;36453:4;36477:27;;;:17;:27;;;;;;;;;36387:125::o;36264:115::-;36351:13;:20;36264:115;:::o;31904:244::-;31181:12;:10;:12::i;:::-;-1:-1:-1;;;;;31170:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31170:23:0;;31162:68;;;;;-1:-1:-1;;;31162:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31993:22:0;::::1;31985:73;;;;-1:-1:-1::0;;;31985:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32095:6;::::0;32074:38:::1;::::0;-1:-1:-1;;;;;32074:38:0;;::::1;::::0;32095:6:::1;::::0;::::1;;::::0;32074:38:::1;::::0;;;::::1;32123:6;:17:::0;;-1:-1:-1;;;;;32123:17:0;;::::1;;;-1:-1:-1::0;;;;;;32123:17:0;;::::1;::::0;;;::::1;::::0;;31904:244::o;38379:97::-;35253:9;;-1:-1:-1;;;;;35253:9:0;35266:10;35253:23;35245:64;;;;;-1:-1:-1;;;35245:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35245:64:0;;;;;;;;;;;;;;;38445:16:::1;:23:::0;;-1:-1:-1;;;;38445:23:0::1;-1:-1:-1::0;;;38445:23:0::1;::::0;;38379:97::o;6591:179::-;6649:7;6681:5;;;6705:6;;;;6697:46;;;;;-1:-1:-1;;;6697:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6761:1;6591:179;-1:-1:-1;;;6591:179:0:o;613:106::-;701:10;613:106;:::o;20827:346::-;-1:-1:-1;;;;;20929:19:0;;20921:68;;;;-1:-1:-1;;;20921:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21008:21:0;;21000:68;;;;-1:-1:-1;;;21000:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21081:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21133:32;;;;;;;;;;;;;;;;;20827:346;;;:::o;37548:304::-;37639:13;;37631:51;;;-1:-1:-1;;;37631:51:0;;37670:4;37631:51;;;;37677:4;37631:51;;;;;;37596:18;;-1:-1:-1;;;;;37639:13:0;;37631:30;;:51;;;;;;;;;;;;;;37639:13;37631:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37631:51:0;;;37627:218;;37779:54;;-1:-1:-1;;;37779:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37627:218;37730:15;;;-1:-1:-1;37723:22:0;;37860:511;37946:16;;37922:7;;-1:-1:-1;;;37946:16:0;;;;37942:422;;;37984:12;37999:37;38034:1;38005:23;:21;:23::i;:::-;37999:34;;;;:37::i;:::-;37984:52;;37979:374;38098:13;38112:6;38098:21;;;;;;;;;;;;;;;;;;38084:10;:35;38080:258;;38176:5;38152:13;38166:6;38152:21;;;;;;;;;;;;;;;;;;:29;38144:69;;;;;-1:-1:-1;;;38144:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38246:13;38260:6;38246:21;;;;;;;;;;;;;;;;;;38236:7;:31;;;;38297:13;38311:6;38297:21;;;;;;;;;;;;;;;;;;38290:28;;;;;38080:258;-1:-1:-1;;38051:8:0;37979:374;;18439:539;-1:-1:-1;;;;;18545:20:0;;18537:70;;;;-1:-1:-1;;;18537:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18626:23:0;;18618:71;;;;-1:-1:-1;;;18618:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18702:47;18723:6;18731:9;18742:6;18702:20;:47::i;:::-;18782:71;18804:6;18782:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18782:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18762:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18887:20;;;;;;;:32;;18912:6;18887:24;:32::i;:::-;-1:-1:-1;;;;;18864:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18935:35;;;;;;;18864:20;;18935:35;;;;;;;;;;;;;18439:539;;;:::o;41678:654::-;41830:4;41847:17;41867:30;41891:5;41867:19;41878:7;;41867:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;41847:50;-1:-1:-1;41908:22:0;41933:21;:6;41847:50;41933:10;:21::i;:::-;41908:46;;41971:7;41967:226;;;42020:33;42035:6;42043:9;42020:14;:33::i;:::-;41967:226;;;42150:19;;42132:49;;42142:6;;-1:-1:-1;;;;;42150:19:0;42171:9;42132;:49::i;:::-;42256:44;42266:6;42274:9;42285:14;42256:9;:44::i;:::-;-1:-1:-1;42320:4:0;;41678:654;-1:-1:-1;;;;;;41678:654:0:o;9418:166::-;9504:7;9540:12;9532:6;;;;9524:29;;;;-1:-1:-1;;;9524:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9571:5:0;;;9418:166::o;32997:257::-;-1:-1:-1;;;;;33074:26:0;;33066:84;;;;-1:-1:-1;;;33066:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33166:45;;-1:-1:-1;;;;;33166:45:0;;;33194:1;;33166:45;;33194:1;;33166:45;33222:9;:24;;-1:-1:-1;;;;;;33222:24:0;-1:-1:-1;;;;;33222:24:0;;;;;;;;;;32997:257::o;19260:378::-;-1:-1:-1;;;;;19344:21:0;;19336:65;;;;;-1:-1:-1;;;19336:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19414:49;19443:1;19447:7;19456:6;19414:20;:49::i;:::-;19491:12;;:24;;19508:6;19491:16;:24::i;:::-;19476:12;:39;-1:-1:-1;;;;;19547:18:0;;:9;:18;;;;;;;;;;;:30;;19570:6;19547:22;:30::i;:::-;-1:-1:-1;;;;;19526:18:0;;:9;:18;;;;;;;;;;;:51;;;;19593:37;;;;;;;19526:18;;:9;;19593:37;;;;;;;;;;19260:378;;:::o;22834:91::-;22890:27;22896:12;:10;:12::i;:::-;22910:6;22890:5;:27::i;7053:158::-;7111:7;7144:1;7139;:6;;7131:49;;;;;-1:-1:-1;;;7131:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7198:5:0;;;7053:158::o;23244:295::-;23321:26;23350:84;23387:6;23350:84;;;;;;;;;;;;;;;;;:32;23360:7;23369:12;:10;:12::i;23350:84::-;23321:113;;23447:51;23456:7;23465:12;:10;:12::i;:::-;23479:18;23447:8;:51::i;:::-;23509:22;23515:7;23524:6;23509:5;:22::i;25784:130::-;25838:5;25863:43;25867:1;25870;25863:43;;;;;;;;;;;;;;;;;:3;:43::i;7470:220::-;7528:7;7552:6;7548:20;;-1:-1:-1;7567:1:0;7560:8;;7548:20;7591:5;;;7595:1;7591;:5;:1;7615:5;;;;;:10;7607:56;;;;-1:-1:-1;;;7607:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8168:153;8226:7;8258:1;8254;:5;8246:44;;;;;-1:-1:-1;;;8246:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8312:1;8308;:5;;;;;;;8168:153;-1:-1:-1;;;8168:153:0:o;19971:418::-;-1:-1:-1;;;;;20055:21:0;;20047:67;;;;-1:-1:-1;;;20047:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20127:49;20148:7;20165:1;20169:6;20127:20;:49::i;:::-;20210:68;20233:6;20210:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20210:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20189:18:0;;:9;:18;;;;;;;;;;:89;20304:12;;:24;;20321:6;20304:16;:24::i;:::-;20289:12;:39;20344:37;;;;;;;;20370:1;;-1:-1:-1;;;;;20344:37:0;;;;;;;;;;;;19971:418;;:::o;26217:184::-;26299:5;26330:1;26325:6;;:1;:6;;;;26333:12;26317:29;;;;;-1:-1:-1;;;26317:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://1892fc30730137592fa4d471abcc95687bb24af1a5acfb6b854c785fcafeb8a8
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.