My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x13c29f9206e64639fabd4f98ff177531f7b74525d2379f38676da69cdd4e3648 | 13613196 | 544 days 23 hrs ago | SpookySwap: Deployer | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
BrewBoo
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-08-02 */ // SPDX-License-Identifier: MIT // P1 - P3: OK pragma solidity 0.6.12; /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @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. */ 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. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { 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. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /* * @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; } } /** * @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. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_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; } } interface IUniswapV2ERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // BrewBoo is MasterChef's left hand and kinda a wizard. He can brew Boo from pretty much anything! // This contract handles "serving up" rewards for xBoo holders by trading tokens collected from fees for Boo. // T1 - T4: OK contract BrewBoo is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; IUniswapV2Factory public immutable factory; address public immutable xboo; address private immutable boo; address private immutable wftm; uint public devCut = 0; // in basis points aka parts per 10,000 so 5000 is 50%, cap of 50%, default is 0 address public devAddr; // set of addresses that can perform certain functions mapping(address => bool) public isAuth; address[] public authorized; bool public anyAuth = false; modifier onlyAuth() { require(isAuth[msg.sender] || anyAuth, "BrewBoo: FORBIDDEN"); _; } // V1 - V5: OK mapping(address => address) internal _bridges; event SetDevAddr(address _addr); event SetDevCut(uint _amount); event LogBridgeSet(address indexed token, address indexed bridge); event LogConvert( address indexed server, address indexed token0, address indexed token1, uint256 amount0, uint256 amount1, uint256 amountBOO ); constructor( address _factory, address _xboo, address _boo, address _wftm ) public { factory = IUniswapV2Factory(_factory); xboo = _xboo; boo = _boo; wftm = _wftm; devAddr = msg.sender; isAuth[msg.sender] = true; authorized.push(msg.sender); } // Begin Owner functions function addAuth(address _auth) external onlyOwner { isAuth[_auth] = true; authorized.push(_auth); } function revokeAuth(address _auth) external onlyOwner { isAuth[_auth] = false; } // setting anyAuth to true allows anyone to call functions protected by onlyAuth function setAnyAuth(bool access) external onlyOwner { anyAuth = access; } function setBridge(address token, address bridge) external onlyOwner { // Checks require( token != boo && token != wftm && token != bridge, "BrewBoo: Invalid bridge" ); // Effects _bridges[token] = bridge; emit LogBridgeSet(token, bridge); } function setDevCut(uint _amount) external onlyOwner { require(_amount <= 5000, "setDevCut: cut too high"); devCut = _amount; emit SetDevCut(_amount); } function setDevAddr(address _addr) external onlyOwner { require(_addr != address(0), "setDevAddr, address cannot be zero address"); devAddr = _addr; emit SetDevAddr(_addr); } // End owner functions function bridgeFor(address token) public view returns (address bridge) { bridge = _bridges[token]; if (bridge == address(0)) { bridge = wftm; } } // C6: It's not a fool proof solution, but it prevents flash loans, so here it's ok to use tx.origin modifier onlyEOA() { // Try to make flash-loan exploit harder to do by only allowing externally owned addresses. require(msg.sender == tx.origin, "BrewBoo: must use EOA"); _; } // F1 - F10: OK // F3: _convert is separate to save gas by only checking the 'onlyEOA' modifier once in case of convertMultiple // F6: There is an exploit to add lots of BOO to the xboo, run convert, then remove the BOO again. // As the size of the Booxboo has grown, this requires large amounts of funds and isn't super profitable anymore // The onlyEOA modifier prevents this being done with a flash loan. // C1 - C24: OK function convert(address token0, address token1) external onlyEOA() onlyAuth() { _convert(token0, token1); } // F1 - F10: OK, see convert // C1 - C24: OK // C3: Loop is under control of the caller function convertMultiple( address[] calldata token0, address[] calldata token1 ) external onlyEOA() onlyAuth() { // TODO: This can be optimized a fair bit, but this is safer and simpler for now uint256 len = token0.length; for (uint256 i = 0; i < len; i++) { _convert(token0[i], token1[i]); } } // F1 - F10: OK // C1- C24: OK function _convert(address token0, address token1) internal { uint256 amount0; uint256 amount1; // handle case where non-LP tokens need to be converted if(token0 == token1) { amount0 = IERC20(token0).balanceOf(address(this)); amount1 = 0; } else { IUniswapV2Pair pair = IUniswapV2Pair(factory.getPair(token0, token1)); require(address(pair) != address(0), "BrewBoo: Invalid pair"); IERC20(address(pair)).safeTransfer( address(pair), pair.balanceOf(address(this)) ); // take balance of tokens in this contract before burning the pair, incase there are already some here uint tok0bal = IERC20(token0).balanceOf(address(this)); uint tok1bal = IERC20(token1).balanceOf(address(this)); pair.burn(address(this)); // subtract old balance of tokens from new balance // the return values of pair.burn cant be trusted due to transfer tax tokens amount0 = IERC20(token0).balanceOf(address(this)).sub(tok0bal); amount1 = IERC20(token1).balanceOf(address(this)).sub(tok1bal); } emit LogConvert( msg.sender, token0, token1, amount0, amount1, _convertStep(token0, token1, amount0, amount1) ); } // F1 - F10: OK // C1 - C24: OK // All safeTransfer, _swap, _toBOO, _convertStep: X1 - X5: OK function _convertStep( address token0, address token1, uint256 amount0, uint256 amount1 ) internal returns (uint256 booOut) { // Interactions if (token0 == token1) { uint256 amount = amount0.add(amount1); if (token0 == boo) { IERC20(boo).safeTransfer(xboo, amount); booOut = amount; } else if (token0 == wftm) { booOut = _toBOO(wftm, amount); } else { address bridge = bridgeFor(token0); amount = _swap(token0, bridge, amount, address(this)); booOut = _convertStep(bridge, bridge, amount, 0); } } else if (token0 == boo) { // eg. BOO - ETH IERC20(boo).safeTransfer(xboo, amount0); booOut = _toBOO(token1, amount1).add(amount0); } else if (token1 == boo) { // eg. USDT - BOO IERC20(boo).safeTransfer(xboo, amount1); booOut = _toBOO(token0, amount0).add(amount1); } else if (token0 == wftm) { // eg. ETH - USDC booOut = _toBOO( wftm, _swap(token1, wftm, amount1, address(this)).add(amount0) ); } else if (token1 == wftm) { // eg. USDT - ETH booOut = _toBOO( wftm, _swap(token0, wftm, amount0, address(this)).add(amount1) ); } else { // eg. MIC - USDT address bridge0 = bridgeFor(token0); address bridge1 = bridgeFor(token1); if (bridge0 == token1) { // eg. MIC - USDT - and bridgeFor(MIC) = USDT booOut = _convertStep( bridge0, token1, _swap(token0, bridge0, amount0, address(this)), amount1 ); } else if (bridge1 == token0) { // eg. WBTC - DSD - and bridgeFor(DSD) = WBTC booOut = _convertStep( token0, bridge1, amount0, _swap(token1, bridge1, amount1, address(this)) ); } else { booOut = _convertStep( bridge0, bridge1, // eg. USDT - DSD - and bridgeFor(DSD) = WBTC _swap(token0, bridge0, amount0, address(this)), _swap(token1, bridge1, amount1, address(this)) ); } } } // F1 - F10: OK // C1 - C24: OK // All safeTransfer, swap: X1 - X5: OK function _swap( address fromToken, address toToken, uint256 amountIn, address to ) internal returns (uint256 amountOut) { // Checks // X1 - X5: OK IUniswapV2Pair pair = IUniswapV2Pair(factory.getPair(fromToken, toToken)); require(address(pair) != address(0), "BrewBoo: Cannot convert"); (uint256 reserve0, uint256 reserve1, ) = pair.getReserves(); (uint reserveInput, uint reserveOutput) = fromToken == pair.token0() ? (reserve0, reserve1) : (reserve1, reserve0); IERC20(fromToken).safeTransfer(address(pair), amountIn); uint amountInput = IERC20(fromToken).balanceOf(address(pair)).sub(reserveInput); // calculate amount that was transferred, this accounts for transfer taxes amountOut = getAmountOut(amountInput, reserveInput, reserveOutput); (uint amount0Out, uint amount1Out) = fromToken == pair.token0() ? (uint(0), amountOut) : (amountOut, uint(0)); pair.swap(amount0Out, amount1Out, to, new bytes(0)); } // F1 - F10: OK // C1 - C24: OK function _toBOO(address token, uint256 amountIn) internal returns (uint256 amountOut) { uint256 amount = amountIn; if (devCut > 0) { amount = amount.mul(devCut).div(10000); IERC20(token).safeTransfer(devAddr, amount); amount = amountIn.sub(amount); } amountOut = _swap(token, boo, amount, xboo); } function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) { require(amountIn > 0, 'BrewBoo: INSUFFICIENT_INPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'BrewBoo: INSUFFICIENT_LIQUIDITY'); uint amountInWithFee = amountIn.mul(998); uint numerator = amountInWithFee.mul(reserveOut); uint denominator = reserveIn.mul(1000).add(amountInWithFee); amountOut = numerator / denominator; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"_xboo","type":"address"},{"internalType":"address","name":"_boo","type":"address"},{"internalType":"address","name":"_wftm","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"bridge","type":"address"}],"name":"LogBridgeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"server","type":"address"},{"indexed":true,"internalType":"address","name":"token0","type":"address"},{"indexed":true,"internalType":"address","name":"token1","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBOO","type":"uint256"}],"name":"LogConvert","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":"_addr","type":"address"}],"name":"SetDevAddr","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SetDevCut","type":"event"},{"inputs":[{"internalType":"address","name":"_auth","type":"address"}],"name":"addAuth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"anyAuth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"authorized","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"bridgeFor","outputs":[{"internalType":"address","name":"bridge","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"}],"name":"convert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"token0","type":"address[]"},{"internalType":"address[]","name":"token1","type":"address[]"}],"name":"convertMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devCut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAuth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_auth","type":"address"}],"name":"revokeAuth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"access","type":"bool"}],"name":"setAnyAuth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"bridge","type":"address"}],"name":"setBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setDevAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setDevCut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"xboo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
61010060405260006001556005805460ff191690553480156200002157600080fd5b5060405162002e6638038062002e66833981810160405260808110156200004757600080fd5b508051602082015160408301516060909301519192909160006200006a6200014f565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160601b0319606094851b811660805292841b831660a05290831b821660c05290911b1660e052600280546001600160a01b0319908116339081179092556000828152600360205260408120805460ff191660019081179091556004805491820181559091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b018054909116909117905562000153565b3390565b60805160601c60a05160601c60c05160601c60e05160601c612c636200020360003980610c045280610da25280611acf5280611b265280611d195280611d705280611d995280611dc65280611e1d5280611e46525080610bad5280611a125280611a7e5280611b865280611bf25280611c565280611cc252806121b65250806104a35280611aa05280611c145280611ce452806121d8525080610ed0528061139052806121fd5250612c636000f3fe608060405234801561001057600080fd5b50600436106101505760003560e01c80638da5cb5b116100cd578063c45a015511610081578063dbcc106d11610066578063dbcc106d1461041e578063f2fde38b1461043b578063f8171dfa1461046e57610150565b8063c45a01551461040e578063da09c72c1461041657610150565b80639d22ae8c116100b25780639d22ae8c14610365578063a761a939146103a0578063bd1b820c146103d357610150565b80638da5cb5b146103435780639c2868371461034b57610150565b8063303e6aa4116101245780635422224e116101095780635422224e146102d55780636ebb64a214610308578063715018a61461033b57610150565b8063303e6aa4146101f2578063313a3a98146102b657610150565b8062b6ada2146101555780630d48669a146101865780631d01548e146101a35780632520e7ff146101bf575b600080fd5b61015d6104a1565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61015d6004803603602081101561019c57600080fd5b50356104c5565b6101ab6104f9565b604080519115158252519081900360200190f35b6101ab600480360360208110156101d557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610502565b6102b46004803603604081101561020857600080fd5b81019060208101813564010000000081111561022357600080fd5b82018360208201111561023557600080fd5b8035906020019184602083028401116401000000008311171561025757600080fd5b91939092909160208101903564010000000081111561027557600080fd5b82018360208201111561028757600080fd5b803590602001918460208302840111640100000000831117156102a957600080fd5b509092509050610517565b005b6102b4600480360360208110156102cc57600080fd5b50351515610686565b6102b4600480360360208110156102eb57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610748565b6102b46004803603602081101561031e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610882565b6102b46109f8565b61015d610af8565b610353610b14565b60408051918252519081900360200190f35b6102b46004803603604081101561037b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610b1a565b61015d600480360360208110156103b657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d72565b6102b4600480360360408110156103e957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610dc7565b61015d610ece565b61015d610ef2565b6102b46004803603602081101561043457600080fd5b5035610f0e565b6102b46004803603602081101561045157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661104b565b6102b46004803603602081101561048457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166111d5565b7f000000000000000000000000000000000000000000000000000000000000000081565b600481815481106104d257fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60055460ff1681565b60036020526000908152604090205460ff1681565b33321461058557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f42726577426f6f3a206d7573742075736520454f410000000000000000000000604482015290519081900360640190fd5b3360009081526003602052604090205460ff16806105a5575060055460ff165b61061057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f42726577426f6f3a20464f5242494444454e0000000000000000000000000000604482015290519081900360640190fd5b8260005b8181101561067e5761067686868381811061062b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1685858481811061065457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff166112b2565b600101610614565b505050505050565b61068e6118eb565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461071757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6107506118eb565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146107d957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600081815260036020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556004805491820181559091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b61088a6118eb565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461091357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661097f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612bda602a913960400191505060405180910390fd5b6002805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116811790915560408051918252517f45c73fc162405abe4471c4228f0797176ac32cb9f7be4a25a67cbd1dda6d007e9181900360200190a150565b610a006118eb565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610a8957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60015481565b610b226118eb565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610bab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610c5357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610c8b57508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b610cf657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f42726577426f6f3a20496e76616c696420627269646765000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82811660008181526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169486169485179055517f2e103aa707acc565f9a1547341914802b2bfe977fd79c595209f248ae4b006139190a35050565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152600660205260409020541680610dc257507f00000000000000000000000000000000000000000000000000000000000000005b919050565b333214610e3557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f42726577426f6f3a206d7573742075736520454f410000000000000000000000604482015290519081900360640190fd5b3360009081526003602052604090205460ff1680610e55575060055460ff165b610ec057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f42726577426f6f3a20464f5242494444454e0000000000000000000000000000604482015290519081900360640190fd5b610eca82826112b2565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b610f166118eb565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610f9f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61138881111561101057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f7365744465764375743a2063757420746f6f2068696768000000000000000000604482015290519081900360640190fd5b60018190556040805182815290517f914990c75916d406c148e7fca9308486d7806a77c0ef66119c9329add5885d2e9181900360200190a150565b6110536118eb565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146110dc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116611148576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612b936026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6111dd6118eb565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461126657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff16600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561138c57604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8616916370a08231916024808301926020929190829003018186803b15801561135557600080fd5b505afa158015611369573d6000803e3d6000fd5b505050506040513d602081101561137f57600080fd5b505191506000905061187d565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e6a4390586866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561143357600080fd5b505afa158015611447573d6000803e3d6000fd5b505050506040513d602081101561145d57600080fd5b5051905073ffffffffffffffffffffffffffffffffffffffff81166114e357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f42726577426f6f3a20496e76616c696420706169720000000000000000000000604482015290519081900360640190fd5b611598818273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561154e57600080fd5b505afa158015611562573d6000803e3d6000fd5b505050506040513d602081101561157857600080fd5b505173ffffffffffffffffffffffffffffffffffffffff841691906118ef565b60008573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561160157600080fd5b505afa158015611615573d6000803e3d6000fd5b505050506040513d602081101561162b57600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191925060009173ffffffffffffffffffffffffffffffffffffffff8816916370a08231916024808301926020929190829003018186803b15801561169f57600080fd5b505afa1580156116b3573d6000803e3d6000fd5b505050506040513d60208110156116c957600080fd5b5051604080517f89afcb44000000000000000000000000000000000000000000000000000000008152306004820152815192935073ffffffffffffffffffffffffffffffffffffffff8616926389afcb44926024808401939192918290030181600087803b15801561173a57600080fd5b505af115801561174e573d6000803e3d6000fd5b505050506040513d604081101561176457600080fd5b5050604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905161180a91849173ffffffffffffffffffffffffffffffffffffffff8b16916370a08231916024808301926020929190829003018186803b1580156117d857600080fd5b505afa1580156117ec573d6000803e3d6000fd5b505050506040513d602081101561180257600080fd5b505190611981565b9450611877818773ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156117d857600080fd5b93505050505b73ffffffffffffffffffffffffffffffffffffffff808416908516337fd06b1d7ed79b664d17472c6f6997b929f1abe463ccccb4e5b6a0038f2f730c1585856118c88a8a84846119cc565b60408051938452602084019290925282820152519081900360600190a450505050565b3390565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261197c908490611f4e565b505050565b60006119c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612026565b90505b92915050565b60008373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611b84576000611a0e84846120d7565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611acd57611ac573ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000167f0000000000000000000000000000000000000000000000000000000000000000836118ef565b809150611b7e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611b5257611b4b7f00000000000000000000000000000000000000000000000000000000000000008261214b565b9150611b7e565b6000611b5d87610d72565b9050611b6b878284306121f8565b9150611b7a81828460006119cc565b9250505b50611f46565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611c5457611c3973ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000167f0000000000000000000000000000000000000000000000000000000000000000856118ef565b611c4d83611c47868561214b565b906120d7565b9050611f46565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d1757611d0973ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000167f0000000000000000000000000000000000000000000000000000000000000000846118ef565b611c4d82611c47878661214b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611dc457611c4d7f0000000000000000000000000000000000000000000000000000000000000000611dbf85611c47887f000000000000000000000000000000000000000000000000000000000000000088306121f8565b61214b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e6c57611c4d7f0000000000000000000000000000000000000000000000000000000000000000611dbf84611c47897f000000000000000000000000000000000000000000000000000000000000000089306121f8565b6000611e7786610d72565b90506000611e8486610d72565b90508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed857611ed18287611ecb8a868a306121f8565b876119cc565b9250611f43565b8673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f2357611ed1878287611f1e8a868a306121f8565b6119cc565b611f408282611f348a868a306121f8565b611f1e8a868a306121f8565b92505b50505b949350505050565b6060611fb0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661270c9092919063ffffffff16565b80519091501561197c57808060200190516020811015611fcf57600080fd5b505161197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612c04602a913960400191505060405180910390fd5b600081848411156120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561209457818101518382015260200161207c565b50505050905090810190601f1680156120c15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156119c357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546000908290156121b0576121796127106121736001548461271b90919063ffffffff16565b9061278e565b6002549091506121a39073ffffffffffffffffffffffffffffffffffffffff8681169116836118ef565b6121ad8382611981565b90505b611f46847f0000000000000000000000000000000000000000000000000000000000000000837f00000000000000000000000000000000000000000000000000000000000000005b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e6a4390587876040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b1580156122a057600080fd5b505afa1580156122b4573d6000803e3d6000fd5b505050506040513d60208110156122ca57600080fd5b5051905073ffffffffffffffffffffffffffffffffffffffff811661235057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f42726577426f6f3a2043616e6e6f7420636f6e76657274000000000000000000604482015290519081900360640190fd5b6000808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561239957600080fd5b505afa1580156123ad573d6000803e3d6000fd5b505050506040513d60608110156123c357600080fd5b508051602091820151604080517f0dfe168100000000000000000000000000000000000000000000000000000000815290516dffffffffffffffffffffffffffff9384169650929091169350600092839273ffffffffffffffffffffffffffffffffffffffff881692630dfe1681926004808301939192829003018186803b15801561244e57600080fd5b505afa158015612462573d6000803e3d6000fd5b505050506040513d602081101561247857600080fd5b505173ffffffffffffffffffffffffffffffffffffffff8b81169116146124a05782846124a3565b83835b90925090506124c973ffffffffffffffffffffffffffffffffffffffff8b16868a6118ef565b6000612536838c73ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156117d857600080fd5b90506125438184846127d0565b96506000808773ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561258e57600080fd5b505afa1580156125a2573d6000803e3d6000fd5b505050506040513d60208110156125b857600080fd5b505173ffffffffffffffffffffffffffffffffffffffff8e81169116146125e1578860006125e5565b6000895b6040805160008082526020820190925292945090925073ffffffffffffffffffffffffffffffffffffffff8a169163022c0d9f91859185918f9190506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561269557818101518382015260200161267d565b50505050905090810190601f1680156126c25780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156126e457600080fd5b505af11580156126f8573d6000803e3d6000fd5b505050505050505050505050949350505050565b6060611f4684846000856128ec565b60008261272a575060006119c6565b8282028284828161273757fe5b04146119c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612bb96021913960400191505060405180910390fd5b60006119c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ab8565b600080841161282a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612b716022913960400191505060405180910390fd5b60008311801561283a5750600082115b6128a557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f42726577426f6f3a20494e53554646494349454e545f4c495155494449545900604482015290519081900360640190fd5b60006128b3856103e661271b565b905060006128c1828561271b565b905060006128d583611c47886103e861271b565b90508082816128e057fe5b04979650505050505050565b60606128f785612b37565b61296257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106129cc57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909201916020918201910161298f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612a2e576040519150601f19603f3d011682016040523d82523d6000602084013e612a33565b606091505b50915091508115612a47579150611f469050565b805115612a575780518082602001fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181815286516024840152865187939192839260440191908501908083836000831561209457818101518382015260200161207c565b60008183612b21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181815283516024840152835190928392604490910191908501908083836000831561209457818101518382015260200161207c565b506000838581612b2d57fe5b0495945050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611f4657505015159291505056fe42726577426f6f3a20494e53554646494349454e545f494e5055545f414d4f554e544f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77736574446576416464722c20616464726573732063616e6e6f74206265207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220d9bd3f12a44dbf2a392e27150deb1a82df1951b2e3d0dc81985678afde66bc8e64736f6c634300060c0033000000000000000000000000152ee697f2e276fa89e96742e9bb9ab1f2e61be3000000000000000000000000a48d959ae2e88f1daa7d5f611e01908106de7598000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe00000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c83
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000152ee697f2e276fa89e96742e9bb9ab1f2e61be3000000000000000000000000a48d959ae2e88f1daa7d5f611e01908106de7598000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe00000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c83
-----Decoded View---------------
Arg [0] : _factory (address): 0x152ee697f2e276fa89e96742e9bb9ab1f2e61be3
Arg [1] : _xboo (address): 0xa48d959ae2e88f1daa7d5f611e01908106de7598
Arg [2] : _boo (address): 0x841fad6eae12c286d1fd18d1d525dffa75c7effe
Arg [3] : _wftm (address): 0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000152ee697f2e276fa89e96742e9bb9ab1f2e61be3
Arg [1] : 000000000000000000000000a48d959ae2e88f1daa7d5f611e01908106de7598
Arg [2] : 000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe
Arg [3] : 00000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c83
Deployed ByteCode Sourcemap
25466:10743:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25620:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25976:27;;;;;;;;;;;;;;;;-1:-1:-1;25976:27:0;;:::i;26010:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;25931:38;;;;;;;;;;;;;;;;-1:-1:-1;25931:38:0;;;;:::i;29394:371::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29394:371:0;;-1:-1:-1;29394:371:0;-1:-1:-1;29394:371:0;:::i;:::-;;27303:87;;;;;;;;;;;;;;;;-1:-1:-1;27303:87:0;;;;:::i;26984:123::-;;;;;;;;;;;;;;;;-1:-1:-1;26984:123:0;;;;:::i;27935:208::-;;;;;;;;;;;;;;;;-1:-1:-1;27935:208:0;;;;:::i;20433:148::-;;;:::i;19791:79::-;;;:::i;25729:22::-;;;:::i;:::-;;;;;;;;;;;;;;;;27398:328;;;;;;;;;;;;;;;;-1:-1:-1;27398:328:0;;;;;;;;;;;:::i;28179:190::-;;;;;;;;;;;;;;;;-1:-1:-1;28179:190:0;;;;:::i;29161:122::-;;;;;;;;;;;;;;;;-1:-1:-1;29161:122:0;;;;;;;;;;;:::i;25569:42::-;;;:::i;25840:22::-;;;:::i;27734:193::-;;;;;;;;;;;;;;;;-1:-1:-1;27734:193:0;;:::i;20736:244::-;;;;;;;;;;;;;;;;-1:-1:-1;20736:244:0;;;;:::i;27115:94::-;;;;;;;;;;;;;;;;-1:-1:-1;27115:94:0;;;;:::i;25620:29::-;;;:::o;25976:27::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25976:27:0;:::o;26010:::-;;;;;;:::o;25931:38::-;;;;;;;;;;;;;;;:::o;29394:371::-;28622:10;28636:9;28622:23;28614:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26092:10:::1;26085:18;::::0;;;:6:::1;:18;::::0;;;;;::::1;;::::0;:29:::1;;-1:-1:-1::0;26107:7:0::1;::::0;::::1;;26085:29;26077:60;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29643:6:::0;29629:11:::2;29667:91;29691:3;29687:1;:7;29667:91;;;29716:30;29725:6;;29732:1;29725:9;;;;;;;;;;;;;;;29736:6;;29743:1;29736:9;;;;;;;;;;;;;;;29716:8;:30::i;:::-;29696:3;;29667:91;;;;26148:1;29394:371:::0;;;;:::o;27303:87::-;20013:12;:10;:12::i;:::-;20003:6;;:22;:6;;;:22;;;19995:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27366:7:::1;:16:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;27303:87::o;26984:123::-;20013:12;:10;:12::i;:::-;20003:6;;:22;:6;;;:22;;;19995:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27046:13:::1;;;::::0;;;:6:::1;:13;::::0;;;;:20;;;::::1;27062:4;27046:20:::0;;::::1;::::0;;;27077:10:::1;:22:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;26984:123::o;27935:208::-;20013:12;:10;:12::i;:::-;20003:6;;:22;:6;;;:22;;;19995:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28008:19:::1;::::0;::::1;28000:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28085:7;:15:::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;28118:17:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;27935:208:::0;:::o;20433:148::-;20013:12;:10;:12::i;:::-;20003:6;;:22;:6;;;:22;;;19995:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20540:1:::1;20524:6:::0;;20503:40:::1;::::0;::::1;20524:6:::0;;::::1;::::0;20503:40:::1;::::0;20540:1;;20503:40:::1;20571:1;20554:19:::0;;;::::1;::::0;;20433:148::o;19791:79::-;19829:7;19856:6;;;19791:79;:::o;25729:22::-;;;;:::o;27398:328::-;20013:12;:10;:12::i;:::-;20003:6;;:22;:6;;;:22;;;19995:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27528:3:::1;27519:12;;:5;:12;;;;:29;;;;;27544:4;27535:13;;:5;:13;;;;27519:29;:48;;;;;27561:6;27552:15;;:5;:15;;;;27519:48;27497:121;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27651:15;::::0;;::::1;;::::0;;;:8:::1;:15;::::0;;;;;:24;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;27691:27;::::1;::::0;27651:15;27691:27:::1;27398:328:::0;;:::o;28179:190::-;28270:15;;;;28234:14;28270:15;;;:8;:15;;;;;;;28300:20;28296:66;;-1:-1:-1;28346:4:0;28296:66;28179:190;;;:::o;29161:122::-;28622:10;28636:9;28622:23;28614:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26092:10:::1;26085:18;::::0;;;:6:::1;:18;::::0;;;;;::::1;;::::0;:29:::1;;-1:-1:-1::0;26107:7:0::1;::::0;::::1;;26085:29;26077:60;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29251:24:::2;29260:6;29268;29251:8;:24::i;:::-;29161:122:::0;;:::o;25569:42::-;;;:::o;25840:22::-;;;;;;:::o;27734:193::-;20013:12;:10;:12::i;:::-;20003:6;;:22;:6;;;:22;;;19995:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27816:4:::1;27805:7;:15;;27797:51;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27859:6;:16:::0;;;27901:18:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;27734:193:::0;:::o;20736:244::-;20013:12;:10;:12::i;:::-;20003:6;;:22;:6;;;:22;;;19995:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20825:22:::1;::::0;::::1;20817:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20927:6;::::0;;20906:38:::1;::::0;::::1;::::0;;::::1;::::0;20927:6;::::1;::::0;20906:38:::1;::::0;::::1;20955:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;20736:244::o;27115:94::-;20013:12;:10;:12::i;:::-;20003:6;;:22;:6;;;:22;;;19995:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27180:13:::1;;27196:5;27180:13:::0;;;:6:::1;:13;::::0;;;;:21;;;::::1;::::0;;27115:94::o;29814:1484::-;29884:15;29910;30016:6;30006:16;;:6;:16;;;30003:1079;;;30049:39;;;;;;30082:4;30049:39;;;;;;:24;;;;;;:39;;;;;;;;;;;;;;:24;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30049:39:0;;-1:-1:-1;30113:1:0;;-1:-1:-1;30003:1079:0;;;30158:19;30195:7;:15;;;30211:6;30219;30195:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30195:31:0;;-1:-1:-1;30250:27:0;;;30242:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30320:129;30381:4;30405;:14;;;30428:4;30405:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30405:29:0;30320:34;;;;:129;:34;:129::i;:::-;30582:12;30604:6;30597:24;;;30630:4;30597:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30597:39:0;30666;;;;;;30699:4;30666:39;;;;;;30597;;-1:-1:-1;30651:12:0;;30666:24;;;;;;:39;;;;;30597;;30666;;;;;;;:24;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30666:39:0;30722:24;;;;;;30740:4;30722:24;;;;;;30666:39;;-1:-1:-1;30722:9:0;;;;;;:24;;;;;;;;;;;;;-1:-1:-1;30722:9:0;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30722:24:0;30927:39;;;;;30960:4;30927:39;;;;;;:52;;30971:7;;30927:24;;;;;;:39;;;;;30722:24;;30927:39;;;;;;;:24;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30927:39:0;;:43;:52::i;:::-;30917:62;;31004:52;31048:7;31011:6;31004:24;;;31037:4;31004:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:52;30994:62;;30003:1079;;;;31097:193;;;;;;;31122:10;31097:193;31189:7;31211;31233:46;31147:6;31168;31189:7;31211;31233:12;:46::i;:::-;31097:193;;;;;;;;;;;;;;;;;;;;;;;;;;29814:1484;;;;:::o;18429:106::-;18517:10;18429:106;:::o;9513:177::-;9623:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9646:23;9623:58;;;9596:86;;9616:5;;9596:19;:86::i;:::-;9513:177;;;:::o;13890:136::-;13948:7;13975:43;13979:1;13982;13975:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;13968:50;;13890:136;;;;;:::o;31415:2657::-;31564:14;31630:6;31620:16;;:6;:16;;;31616:2449;;;31653:14;31670:20;:7;31682;31670:11;:20::i;:::-;31653:37;;31719:3;31709:13;;:6;:13;;;31705:430;;;31743:38;:24;31750:3;31743:24;31768:4;31774:6;31743:24;:38::i;:::-;31809:6;31800:15;;31705:430;;;31851:4;31841:14;;:6;:14;;;31837:298;;;31885:20;31892:4;31898:6;31885;:20::i;:::-;31876:29;;31837:298;;;31946:14;31963:17;31973:6;31963:9;:17::i;:::-;31946:34;;32008:44;32014:6;32022;32030;32046:4;32008:5;:44::i;:::-;31999:53;;32080:39;32093:6;32101;32109;32117:1;32080:12;:39::i;:::-;32071:48;;31837:298;;31616:2449;;;;32166:3;32156:13;;:6;:13;;;32152:1913;;;32216:39;:24;32223:3;32216:24;32241:4;32247:7;32216:24;:39::i;:::-;32279:36;32307:7;32279:23;32286:6;32294:7;32279:6;:23::i;:::-;:27;;:36::i;:::-;32270:45;;32152:1913;;;32347:3;32337:13;;:6;:13;;;32333:1732;;;32398:39;:24;32405:3;32398:24;32423:4;32429:7;32398:24;:39::i;:::-;32461:36;32489:7;32461:23;32468:6;32476:7;32461:6;:23::i;32333:1732::-;32529:4;32519:14;;:6;:14;;;32515:1550;;;32590:119;32615:4;32638:56;32686:7;32638:43;32644:6;32652:4;32658:7;32675:4;32638:5;:43::i;:56::-;32590:6;:119::i;32515:1550::-;32741:4;32731:14;;:6;:14;;;32727:1338;;;32802:119;32827:4;32850:56;32898:7;32850:43;32856:6;32864:4;32870:7;32887:4;32850:5;:43::i;32727:1338::-;32985:15;33003:17;33013:6;33003:9;:17::i;:::-;32985:35;;33035:15;33053:17;33063:6;33053:9;:17::i;:::-;33035:35;;33100:6;33089:17;;:7;:17;;;33085:969;;;33199:189;33234:7;33264:6;33293:46;33299:6;33307:7;33316;33333:4;33293:5;:46::i;:::-;33362:7;33199:12;:189::i;:::-;33190:198;;33085:969;;;33425:6;33414:17;;:7;:17;;;33410:644;;;33524:189;33559:6;33588:7;33618;33648:46;33654:6;33662:7;33671;33688:4;33648:5;:46::i;:::-;33524:12;:189::i;33410:644::-;33763:275;33798:7;33828;33904:46;33910:6;33918:7;33927;33944:4;33904:5;:46::i;:::-;33973;33979:6;33987:7;33996;34013:4;33973:5;:46::i;33763:275::-;33754:284;;33410:644;32727:1338;;;31415:2657;;;;;;:::o;11818:761::-;12242:23;12268:69;12296:4;12268:69;;;;;;;;;;;;;;;;;12276:5;12268:27;;;;:69;;;;;:::i;:::-;12352:17;;12242:95;;-1:-1:-1;12352:21:0;12348:224;;12494:10;12483:30;;;;;;;;;;;;;;;-1:-1:-1;12483:30:0;12475:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14329:192;14415:7;14451:12;14443:6;;;;14435:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14487:5:0;;;14329:192::o;13426:181::-;13484:7;13516:5;;;13540:6;;;;13532:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35296:403;35459:6;;35381:17;;35436:8;;35459:10;35455:183;;35495:29;35518:5;35495:18;35506:6;;35495;:10;;:18;;;;:::i;:::-;:22;;:29::i;:::-;35566:7;;35486:38;;-1:-1:-1;35539:43:0;;35566:7;35539:26;;;;35566:7;35486:38;35539:26;:43::i;:::-;35606:20;:8;35619:6;35606:12;:20::i;:::-;35597:29;;35455:183;35660:31;35666:5;35673:3;35678:6;35686:4;34166:1080;34308:17;34381:19;34431:7;:15;;;34447:9;34458:7;34431:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34431:35:0;;-1:-1:-1;34486:27:0;;;34478:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34555:16;34573;34595:4;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34595:18:0;;;;;;;;34679:13;;;;;;;34554:59;;;;;-1:-1:-1;34554:59:0;;;;;-1:-1:-1;34625:17:0;;;;34679:11;;;;;;:13;;;;;34595:18;;34679:13;;;;;:11;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34679:13:0;34666:26;;;;;;;:72;;34719:8;34729;34666:72;;;34696:8;34706;34666:72;34624:114;;-1:-1:-1;34624:114:0;-1:-1:-1;34749:55:0;:30;;;34788:4;34795:8;34749:30;:55::i;:::-;34815:16;34834:60;34881:12;34841:9;34834:27;;;34870:4;34834:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:60;34815:79;;34994:54;35007:11;35020:12;35034:13;34994:12;:54::i;:::-;34982:66;;35060:15;35077;35109:4;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35109:13:0;35096:26;;;;;;;:72;;35149:9;35165:1;35096:72;;;35131:1;35135:9;35096:72;35217:12;;;35227:1;35217:12;;;;;;;;;35059:109;;-1:-1:-1;35059:109:0;;-1:-1:-1;35179:9:0;;;;;;35059:109;;;;35213:2;;35217:12;;35179:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34166:1080;;;;;;;;;;;;;;:::o;6591:196::-;6694:12;6726:53;6749:6;6757:4;6763:1;6766:12;6726:22;:53::i;14780:471::-;14838:7;15083:6;15079:47;;-1:-1:-1;15113:1:0;15106:8;;15079:47;15150:5;;;15154:1;15150;:5;:1;15174:5;;;;;:10;15166:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15727:132;15785:7;15812:39;15816:1;15819;15812:39;;;;;;;;;;;;;;;;;:3;:39::i;35707:499::-;35800:14;35846:1;35835:8;:12;35827:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35917:1;35905:9;:13;:31;;;;;35935:1;35922:10;:14;35905:31;35897:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35983:20;36006:17;:8;36019:3;36006:12;:17::i;:::-;35983:40;-1:-1:-1;36034:14:0;36051:31;35983:40;36071:10;36051:19;:31::i;:::-;36034:48;-1:-1:-1;36093:16:0;36112:40;36136:15;36112:19;:9;36126:4;36112:13;:19::i;:40::-;36093:59;;36187:11;36175:9;:23;;;;;;;35707:499;-1:-1:-1;;;;;;;35707:499:0:o;7968:979::-;8098:12;8131:18;8142:6;8131:10;:18::i;:::-;8123:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8257:12;8271:23;8298:6;:11;;8318:8;8329:4;8298:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8256:78;;;;8349:7;8345:595;;;8380:10;-1:-1:-1;8373:17:0;;-1:-1:-1;8373:17:0;8345:595;8494:17;;:21;8490:439;;8757:10;8751:17;8818:15;8805:10;8801:2;8797:19;8790:44;8705:148;8893:20;;;;;;;;;;;;;;;;;;;;8900:12;;8893:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16355:278;16441:7;16476:12;16469:5;16461:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16500:9;16516:1;16512;:5;;;;;;;16355:278;-1:-1:-1;;;;;16355:278:0:o;3476:619::-;3536:4;4004:20;;3847:66;4044:23;;;;;;:42;;-1:-1:-1;;4071:15:0;;;4036:51;-1:-1:-1;;3476:619:0:o
Swarm Source
ipfs://d9bd3f12a44dbf2a392e27150deb1a82df1951b2e3d0dc81985678afde66bc8e
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.