ETH Price: $2,302.10 (+0.59%)

Contract

0x6C73345aC461A870B48C64142bbEC30b5468472E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve201904862024-06-28 13:28:4771 days ago1719581327IN
0x6C73345a...b5468472E
0 ETH0.000121615.02057873
Approve194084462024-03-11 1:03:11180 days ago1710118991IN
0x6C73345a...b5468472E
0 ETH0.0014879661.42773398
Transfer191751572024-02-07 8:34:23213 days ago1707294863IN
0x6C73345a...b5468472E
0 ETH0.0026031827.92221185
Approve157872982022-10-20 5:44:11688 days ago1666244651IN
0x6C73345a...b5468472E
0 ETH0.0009401620.2155367
Transfer157221072022-10-11 3:13:35697 days ago1665458015IN
0x6C73345a...b5468472E
0 ETH0.0023319525
Approve155916602022-09-22 21:46:35715 days ago1663883195IN
0x6C73345a...b5468472E
0 ETH0.000194558.03175095
Set Max Tx Perce...136180362021-11-15 3:41:471027 days ago1636947707IN
0x6C73345a...b5468472E
0 ETH0.00693147143.79157482
Approve133871352021-10-09 22:10:181063 days ago1633817418IN
0x6C73345a...b5468472E
0 ETH0.0035849477.08399643
Approve133566712021-10-05 3:39:151068 days ago1633405155IN
0x6C73345a...b5468472E
0 ETH0.0016524668.21879401
Approve132374562021-09-16 15:01:251087 days ago1631804485IN
0x6C73345a...b5468472E
0 ETH0.0028095260.41072864
Approve132296422021-09-15 10:00:041088 days ago1631700004IN
0x6C73345a...b5468472E
0 ETH0.0018823740.47504367
Approve132010652021-09-10 23:42:101092 days ago1631317330IN
0x6C73345a...b5468472E
0 ETH0.00772652166.13683875
Approve131400602021-09-01 13:28:421102 days ago1630502922IN
0x6C73345a...b5468472E
0 ETH0.0040423386.91881664
Approve131368302021-09-01 1:30:581102 days ago1630459858IN
0x6C73345a...b5468472E
0 ETH0.00470752101.22194234
Approve130763312021-08-22 17:06:101111 days ago1629651970IN
0x6C73345a...b5468472E
0 ETH0.0034801474.83050087
Approve130668402021-08-21 5:41:531113 days ago1629524513IN
0x6C73345a...b5468472E
0 ETH0.0004960820.47975595
Approve130658762021-08-21 2:00:151113 days ago1629511215IN
0x6C73345a...b5468472E
0 ETH0.0010926823.49503736
Approve129835742021-08-08 9:22:081126 days ago1628414528IN
0x6C73345a...b5468472E
0 ETH0.0012453426.77766418
Approve129818672021-08-08 3:08:021126 days ago1628392082IN
0x6C73345a...b5468472E
0 ETH0.0019107241.08464169
Approve129760182021-08-07 5:31:141127 days ago1628314274IN
0x6C73345a...b5468472E
0 ETH0.0020928145
Approve129759922021-08-07 5:23:591127 days ago1628313839IN
0x6C73345a...b5468472E
0 ETH0.0022788449
Approve129643472021-08-05 10:06:001129 days ago1628157960IN
0x6C73345a...b5468472E
0 ETH0.001082940.7
Approve129643462021-08-05 10:05:321129 days ago1628157932IN
0x6C73345a...b5468472E
0 ETH0.0037205680
Approve128292782021-07-15 4:06:301150 days ago1626321990IN
0x6C73345a...b5468472E
0 ETH0.0017300637.2
Approve128237272021-07-14 7:12:241151 days ago1626246744IN
0x6C73345a...b5468472E
0 ETH0.0013773229.8
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FOX

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-12
*/

pragma solidity ^0.6.12;

// SPDX-License-Identifier: MIT

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 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 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 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);
            }
        }
    }
}

/**
 * @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;
    }
}

contract FOX is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    string  private constant _NAME = 'Fox Inu';
    string  private constant _SYMBOL = 'FOX';
    uint8   private constant _DECIMALS = 8;
   
    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS);
    uint256 private constant _GRANULARITY = 100;
    
    uint256 private _tTotal = 1000000000000000 * _DECIMALFACTOR;
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 private      _TAX_FEE = 0;
    uint256 private     _BURN_FEE = 0;
    uint256 private     _MAX_TX_SIZE = 10000000000000 * _DECIMALFACTOR;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _NAME;
    }

    function symbol() public view returns (string memory) {
        return _SYMBOL;
    }

    function decimals() public view returns (uint8) {
        return _DECIMALS;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    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;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if(sender != owner() && recipient != owner())
            require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount.");
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tTotal = _tTotal.sub(tBurn);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getTValues(tAmount, _TAX_FEE, _BURN_FEE);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn);
    }

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 burnFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100);
        uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn);
        return (tTransferAmount, tFee, tBurn);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }

    function _setTaxFee(uint256 taxFee) external onlyOwner() {
        require(taxFee >= 50 && taxFee <= 1000, 'taxFee should be in 1 - 10');
        _TAX_FEE = taxFee;
    }

    function _setBurnFee(uint256 burnFee) external onlyOwner() {
        require(burnFee >= 50 && burnFee <= 1000, 'burnFee should be in 1 - 10');
        _BURN_FEE = burnFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _MAX_TX_SIZE;
    }
    
    function getMaxTxAmount() public view returns(uint256) {
        return _getMaxTxAmount();
    }
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _MAX_TX_SIZE = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"_setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"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":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405269152d02c7e14af680000060065569085afffa6ff50bffffff196007556000600a819055600b55683635c9adc5dea00000600c553480156200004557600080fd5b5060006200005262000124565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060075460016000620000ad62000124565b6001600160a01b03168152602081019190915260400160002055620000d162000124565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a362000128565b3390565b611ec080620001386000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636d8b0527116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610492578063f2cc0c18146104c0578063f2fde38b146104e6578063f84354f11461050c5761018e565b8063a9059cbb14610423578063cba0e9961461044f578063d543dbeb146104755761018e565b80636d8b05271461039557806370a082311461039d578063715018a6146103c35780638da5cb5b146103cb57806395d89b41146103ef578063a457c2d7146103f75761018e565b8063313ce5671161014b5780633bd5d173116101255780633bd5d1731461032e5780633c9f861d1461034b5780634549b039146103535780635880b873146103785761018e565b8063313ce567146102c557806339509351146102e35780633b6b19611461030f5761018e565b806306fdde0314610193578063095ea7b31461021057806313114a9d1461025057806318160ddd1461026a57806323b872dd146102725780632d838119146102a8575b600080fd5b61019b610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610553565b604080519115158252519081900360200190f35b610258610571565b60408051918252519081900360200190f35b610258610577565b61023c6004803603606081101561028857600080fd5b506001600160a01b0381358116916020810135909116906040013561057d565b610258600480360360208110156102be57600080fd5b5035610604565b6102cd610666565b6040805160ff9092168252519081900360200190f35b61023c600480360360408110156102f957600080fd5b506001600160a01b03813516906020013561066b565b61032c6004803603602081101561032557600080fd5b50356106b9565b005b61032c6004803603602081101561034457600080fd5b503561077a565b610258610854565b6102586004803603604081101561036957600080fd5b5080359060200135151561085a565b61032c6004803603602081101561038e57600080fd5b50356108ec565b6102586109ad565b610258600480360360208110156103b357600080fd5b50356001600160a01b03166109bc565b61032c610a1e565b6103d3610ac0565b604080516001600160a01b039092168252519081900360200190f35b61019b610acf565b61023c6004803603604081101561040d57600080fd5b506001600160a01b038135169060200135610aec565b61023c6004803603604081101561043957600080fd5b506001600160a01b038135169060200135610b54565b61023c6004803603602081101561046557600080fd5b50356001600160a01b0316610b68565b61032c6004803603602081101561048b57600080fd5b5035610b86565b610258600480360360408110156104a857600080fd5b506001600160a01b0381358116916020013516610c04565b61032c600480360360208110156104d657600080fd5b50356001600160a01b0316610c2f565b61032c600480360360208110156104fc57600080fd5b50356001600160a01b0316610e11565b61032c6004803603602081101561052257600080fd5b50356001600160a01b0316610f09565b604080518082019091526007815266466f7820496e7560c81b602082015290565b60006105676105606110ca565b84846110ce565b5060015b92915050565b60085490565b60065490565b600061058a8484846111ba565b6105fa846105966110ca565b6105f585604051806060016040528060288152602001611d5e602891396001600160a01b038a166000908152600360205260408120906105d46110ca565b6001600160a01b031681526020810191909152604001600020549190611464565b6110ce565b5060019392505050565b60006007548211156106475760405162461bcd60e51b815260040180806020018281038252602a815260200180611ca3602a913960400191505060405180910390fd5b60006106516114fb565b905061065d838261151e565b9150505b919050565b600890565b60006105676106786110ca565b846105f585600360006106896110ca565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611567565b6106c16110ca565b6000546001600160a01b03908116911614610711576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b6032811015801561072457506103e88111155b610775576040805162461bcd60e51b815260206004820152601b60248201527f6275726e4665652073686f756c6420626520696e2031202d2031300000000000604482015290519081900360640190fd5b600b55565b60006107846110ca565b6001600160a01b03811660009081526004602052604090205490915060ff16156107df5760405162461bcd60e51b815260040180806020018281038252602c815260200180611e3a602c913960400191505060405180910390fd5b60006107ea836115c1565b505050506001600160a01b0384166000908152600160205260409020549192506108169190508261161e565b6001600160a01b03831660009081526001602052604090205560075461083c908261161e565b60075560085461084c9084611567565b600855505050565b60095490565b60006006548311156108b3576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816108d25760006108c3846115c1565b5093955061056b945050505050565b60006108dd846115c1565b5092955061056b945050505050565b6108f46110ca565b6000546001600160a01b03908116911614610944576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b6032811015801561095757506103e88111155b6109a8576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b600a55565b60006109b7611660565b905090565b6001600160a01b03811660009081526004602052604081205460ff16156109fc57506001600160a01b038116600090815260026020526040902054610661565b6001600160a01b03821660009081526001602052604090205461056b90610604565b610a266110ca565b6000546001600160a01b03908116911614610a76576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60408051808201909152600381526208c9eb60eb1b602082015290565b6000610567610af96110ca565b846105f585604051806060016040528060258152602001611e666025913960036000610b236110ca565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611464565b6000610567610b616110ca565b84846111ba565b6001600160a01b031660009081526004602052604090205460ff1690565b610b8e6110ca565b6000546001600160a01b03908116911614610bde576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b610bfe6064610bf88360065461166690919063ffffffff16565b9061151e565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c376110ca565b6000546001600160a01b03908116911614610c87576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610ce35760405162461bcd60e51b8152600401808060200182810382526022815260200180611e186022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610d51576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610dab576001600160a01b038116600090815260016020526040902054610d9190610604565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610e196110ca565b6000546001600160a01b03908116911614610e69576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b6001600160a01b038116610eae5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ccd6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f116110ca565b6000546001600160a01b03908116911614610f61576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610fce576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6005548110156110c657816001600160a01b031660058281548110610ff257fe5b6000918252602090912001546001600160a01b031614156110be5760058054600019810190811061101f57fe5b600091825260209091200154600580546001600160a01b03909216918390811061104557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061109757fe5b600082815260209020810160001990810180546001600160a01b03191690550190556110c6565b600101610fd1565b5050565b3390565b6001600160a01b0383166111135760405162461bcd60e51b8152600401808060200182810382526024815260200180611df46024913960400191505060405180910390fd5b6001600160a01b0382166111585760405162461bcd60e51b8152600401808060200182810382526022815260200180611cf36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111ff5760405162461bcd60e51b8152600401808060200182810382526025815260200180611dcf6025913960400191505060405180910390fd5b6001600160a01b0382166112445760405162461bcd60e51b8152600401808060200182810382526023815260200180611c806023913960400191505060405180910390fd5b600081116112835760405162461bcd60e51b8152600401808060200182810382526029815260200180611da66029913960400191505060405180910390fd5b61128b610ac0565b6001600160a01b0316836001600160a01b0316141580156112c557506112af610ac0565b6001600160a01b0316826001600160a01b031614155b1561130b57600c5481111561130b5760405162461bcd60e51b8152600401808060200182810382526028815260200180611d156028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561134c57506001600160a01b03821660009081526004602052604090205460ff16155b156113615761135c8383836116bf565b61145f565b6001600160a01b03831660009081526004602052604090205460ff161580156113a257506001600160a01b03821660009081526004602052604090205460ff165b156113b25761135c8383836117ff565b6001600160a01b03831660009081526004602052604090205460ff161580156113f457506001600160a01b03821660009081526004602052604090205460ff16155b156114045761135c8383836118c9565b6001600160a01b03831660009081526004602052604090205460ff16801561144457506001600160a01b03821660009081526004602052604090205460ff165b156114545761135c83838361192e565b61145f8383836118c9565b505050565b600081848411156114f35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114b85781810151838201526020016114a0565b50505050905090810190601f1680156114e55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006115086119c2565b9092509050611517828261151e565b9250505090565b600061156083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b25565b9392505050565b600082820183811015611560576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006115de8a600a54600b54611b8a565b92509250925060006115ee6114fb565b905060008060006116018e878787611bdd565b919e509c509a509598509396509194505050505091939550919395565b600061156083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611464565b600c5490565b6000826116755750600061056b565b8282028284828161168257fe5b04146115605760405162461bcd60e51b8152600401808060200182810382526021815260200180611d3d6021913960400191505060405180910390fd5b60006116c96114fb565b90506000806000806000806116dd886115c1565b95509550955095509550955060006116fe888361166690919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611724908a61161e565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611753908861161e565b6001600160a01b03808d1660009081526001602052604080822093909355908c16815220546117829087611567565b6001600160a01b038b166000908152600160205260409020556117a785828585611c2d565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006118096114fb565b905060008060008060008061181d886115c1565b955095509550955095509550600061183e888361166690919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611864908861161e565b6001600160a01b03808d16600090815260016020908152604080832094909455918d1681526002909152205461189a9085611567565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546117829087611567565b60006118d36114fb565b90506000806000806000806118e7886115c1565b9550955095509550955095506000611908888361166690919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611753908861161e565b60006119386114fb565b905060008060008060008061194c886115c1565b955095509550955095509550600061196d888361166690919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611993908a61161e565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611864908861161e565b6007546006546000918291825b600554811015611af3578260016000600584815481106119eb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a505750816002600060058481548110611a2957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a675760075460065494509450505050611b21565b611aa76001600060058481548110611a7b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061161e565b9250611ae96002600060058481548110611abd57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061161e565b91506001016119cf565b50600654600754611b039161151e565b821015611b1b57600754600654935093505050611b21565b90925090505b9091565b60008183611b745760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114b85781810151838201526020016114a0565b506000838581611b8057fe5b0495945050505050565b6000808080611ba06064610bf881818b8b611666565b90506000611bb56064610bf881818c8b611666565b90506000611bcd82611bc78b8661161e565b9061161e565b9992985090965090945050505050565b6000808080611bec8886611666565b90506000611bfa8887611666565b90506000611c088888611666565b90506000611c1a82611bc7868661161e565b939b939a50919850919650505050505050565b611c4683611bc78660075461161e90919063ffffffff16565b600755600854611c569083611567565b600855600954611c669082611567565b600955600654611c76908261161e565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220de288bc5666b0577dbc067e5c30228ba9e57409c61be0e88a1c500e846709b8164736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636d8b0527116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610492578063f2cc0c18146104c0578063f2fde38b146104e6578063f84354f11461050c5761018e565b8063a9059cbb14610423578063cba0e9961461044f578063d543dbeb146104755761018e565b80636d8b05271461039557806370a082311461039d578063715018a6146103c35780638da5cb5b146103cb57806395d89b41146103ef578063a457c2d7146103f75761018e565b8063313ce5671161014b5780633bd5d173116101255780633bd5d1731461032e5780633c9f861d1461034b5780634549b039146103535780635880b873146103785761018e565b8063313ce567146102c557806339509351146102e35780633b6b19611461030f5761018e565b806306fdde0314610193578063095ea7b31461021057806313114a9d1461025057806318160ddd1461026a57806323b872dd146102725780632d838119146102a8575b600080fd5b61019b610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610553565b604080519115158252519081900360200190f35b610258610571565b60408051918252519081900360200190f35b610258610577565b61023c6004803603606081101561028857600080fd5b506001600160a01b0381358116916020810135909116906040013561057d565b610258600480360360208110156102be57600080fd5b5035610604565b6102cd610666565b6040805160ff9092168252519081900360200190f35b61023c600480360360408110156102f957600080fd5b506001600160a01b03813516906020013561066b565b61032c6004803603602081101561032557600080fd5b50356106b9565b005b61032c6004803603602081101561034457600080fd5b503561077a565b610258610854565b6102586004803603604081101561036957600080fd5b5080359060200135151561085a565b61032c6004803603602081101561038e57600080fd5b50356108ec565b6102586109ad565b610258600480360360208110156103b357600080fd5b50356001600160a01b03166109bc565b61032c610a1e565b6103d3610ac0565b604080516001600160a01b039092168252519081900360200190f35b61019b610acf565b61023c6004803603604081101561040d57600080fd5b506001600160a01b038135169060200135610aec565b61023c6004803603604081101561043957600080fd5b506001600160a01b038135169060200135610b54565b61023c6004803603602081101561046557600080fd5b50356001600160a01b0316610b68565b61032c6004803603602081101561048b57600080fd5b5035610b86565b610258600480360360408110156104a857600080fd5b506001600160a01b0381358116916020013516610c04565b61032c600480360360208110156104d657600080fd5b50356001600160a01b0316610c2f565b61032c600480360360208110156104fc57600080fd5b50356001600160a01b0316610e11565b61032c6004803603602081101561052257600080fd5b50356001600160a01b0316610f09565b604080518082019091526007815266466f7820496e7560c81b602082015290565b60006105676105606110ca565b84846110ce565b5060015b92915050565b60085490565b60065490565b600061058a8484846111ba565b6105fa846105966110ca565b6105f585604051806060016040528060288152602001611d5e602891396001600160a01b038a166000908152600360205260408120906105d46110ca565b6001600160a01b031681526020810191909152604001600020549190611464565b6110ce565b5060019392505050565b60006007548211156106475760405162461bcd60e51b815260040180806020018281038252602a815260200180611ca3602a913960400191505060405180910390fd5b60006106516114fb565b905061065d838261151e565b9150505b919050565b600890565b60006105676106786110ca565b846105f585600360006106896110ca565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611567565b6106c16110ca565b6000546001600160a01b03908116911614610711576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b6032811015801561072457506103e88111155b610775576040805162461bcd60e51b815260206004820152601b60248201527f6275726e4665652073686f756c6420626520696e2031202d2031300000000000604482015290519081900360640190fd5b600b55565b60006107846110ca565b6001600160a01b03811660009081526004602052604090205490915060ff16156107df5760405162461bcd60e51b815260040180806020018281038252602c815260200180611e3a602c913960400191505060405180910390fd5b60006107ea836115c1565b505050506001600160a01b0384166000908152600160205260409020549192506108169190508261161e565b6001600160a01b03831660009081526001602052604090205560075461083c908261161e565b60075560085461084c9084611567565b600855505050565b60095490565b60006006548311156108b3576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816108d25760006108c3846115c1565b5093955061056b945050505050565b60006108dd846115c1565b5092955061056b945050505050565b6108f46110ca565b6000546001600160a01b03908116911614610944576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b6032811015801561095757506103e88111155b6109a8576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b600a55565b60006109b7611660565b905090565b6001600160a01b03811660009081526004602052604081205460ff16156109fc57506001600160a01b038116600090815260026020526040902054610661565b6001600160a01b03821660009081526001602052604090205461056b90610604565b610a266110ca565b6000546001600160a01b03908116911614610a76576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60408051808201909152600381526208c9eb60eb1b602082015290565b6000610567610af96110ca565b846105f585604051806060016040528060258152602001611e666025913960036000610b236110ca565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611464565b6000610567610b616110ca565b84846111ba565b6001600160a01b031660009081526004602052604090205460ff1690565b610b8e6110ca565b6000546001600160a01b03908116911614610bde576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b610bfe6064610bf88360065461166690919063ffffffff16565b9061151e565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c376110ca565b6000546001600160a01b03908116911614610c87576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610ce35760405162461bcd60e51b8152600401808060200182810382526022815260200180611e186022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610d51576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610dab576001600160a01b038116600090815260016020526040902054610d9190610604565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610e196110ca565b6000546001600160a01b03908116911614610e69576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b6001600160a01b038116610eae5760405162461bcd60e51b8152600401808060200182810382526026815260200180611ccd6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f116110ca565b6000546001600160a01b03908116911614610f61576040805162461bcd60e51b81526020600482018190526024820152600080516020611d86833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610fce576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6005548110156110c657816001600160a01b031660058281548110610ff257fe5b6000918252602090912001546001600160a01b031614156110be5760058054600019810190811061101f57fe5b600091825260209091200154600580546001600160a01b03909216918390811061104557fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061109757fe5b600082815260209020810160001990810180546001600160a01b03191690550190556110c6565b600101610fd1565b5050565b3390565b6001600160a01b0383166111135760405162461bcd60e51b8152600401808060200182810382526024815260200180611df46024913960400191505060405180910390fd5b6001600160a01b0382166111585760405162461bcd60e51b8152600401808060200182810382526022815260200180611cf36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111ff5760405162461bcd60e51b8152600401808060200182810382526025815260200180611dcf6025913960400191505060405180910390fd5b6001600160a01b0382166112445760405162461bcd60e51b8152600401808060200182810382526023815260200180611c806023913960400191505060405180910390fd5b600081116112835760405162461bcd60e51b8152600401808060200182810382526029815260200180611da66029913960400191505060405180910390fd5b61128b610ac0565b6001600160a01b0316836001600160a01b0316141580156112c557506112af610ac0565b6001600160a01b0316826001600160a01b031614155b1561130b57600c5481111561130b5760405162461bcd60e51b8152600401808060200182810382526028815260200180611d156028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561134c57506001600160a01b03821660009081526004602052604090205460ff16155b156113615761135c8383836116bf565b61145f565b6001600160a01b03831660009081526004602052604090205460ff161580156113a257506001600160a01b03821660009081526004602052604090205460ff165b156113b25761135c8383836117ff565b6001600160a01b03831660009081526004602052604090205460ff161580156113f457506001600160a01b03821660009081526004602052604090205460ff16155b156114045761135c8383836118c9565b6001600160a01b03831660009081526004602052604090205460ff16801561144457506001600160a01b03821660009081526004602052604090205460ff165b156114545761135c83838361192e565b61145f8383836118c9565b505050565b600081848411156114f35760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114b85781810151838201526020016114a0565b50505050905090810190601f1680156114e55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006115086119c2565b9092509050611517828261151e565b9250505090565b600061156083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b25565b9392505050565b600082820183811015611560576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006115de8a600a54600b54611b8a565b92509250925060006115ee6114fb565b905060008060006116018e878787611bdd565b919e509c509a509598509396509194505050505091939550919395565b600061156083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611464565b600c5490565b6000826116755750600061056b565b8282028284828161168257fe5b04146115605760405162461bcd60e51b8152600401808060200182810382526021815260200180611d3d6021913960400191505060405180910390fd5b60006116c96114fb565b90506000806000806000806116dd886115c1565b95509550955095509550955060006116fe888361166690919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611724908a61161e565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611753908861161e565b6001600160a01b03808d1660009081526001602052604080822093909355908c16815220546117829087611567565b6001600160a01b038b166000908152600160205260409020556117a785828585611c2d565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b60006118096114fb565b905060008060008060008061181d886115c1565b955095509550955095509550600061183e888361166690919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611864908861161e565b6001600160a01b03808d16600090815260016020908152604080832094909455918d1681526002909152205461189a9085611567565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546117829087611567565b60006118d36114fb565b90506000806000806000806118e7886115c1565b9550955095509550955095506000611908888361166690919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611753908861161e565b60006119386114fb565b905060008060008060008061194c886115c1565b955095509550955095509550600061196d888361166690919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611993908a61161e565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611864908861161e565b6007546006546000918291825b600554811015611af3578260016000600584815481106119eb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a505750816002600060058481548110611a2957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a675760075460065494509450505050611b21565b611aa76001600060058481548110611a7b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061161e565b9250611ae96002600060058481548110611abd57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061161e565b91506001016119cf565b50600654600754611b039161151e565b821015611b1b57600754600654935093505050611b21565b90925090505b9091565b60008183611b745760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114b85781810151838201526020016114a0565b506000838581611b8057fe5b0495945050505050565b6000808080611ba06064610bf881818b8b611666565b90506000611bb56064610bf881818c8b611666565b90506000611bcd82611bc78b8661161e565b9061161e565b9992985090965090945050505050565b6000808080611bec8886611666565b90506000611bfa8887611666565b90506000611c088888611666565b90506000611c1a82611bc7868661161e565b939b939a50919850919650505050505050565b611c4683611bc78660075461161e90919063ffffffff16565b600755600854611c569083611567565b600855600954611c669082611567565b600955600654611c76908261161e565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220de288bc5666b0577dbc067e5c30228ba9e57409c61be0e88a1c500e846709b8164736f6c634300060c0033

Deployed Bytecode Sourcemap

16828:12671:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18037:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18949:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18949:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20060:87;;;:::i;:::-;;;;;;;;;;;;;;;;18314:95;;;:::i;19118:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19118:313:0;;;;;;;;;;;;;;;;;:::i;21084:253::-;;;;;;;;;;;;;;;;-1:-1:-1;21084:253:0;;:::i;18223:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19439:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19439:218:0;;;;;;;;:::i;28929:180::-;;;;;;;;;;;;;;;;-1:-1:-1;28929:180:0;;:::i;:::-;;20255:377;;;;;;;;;;;;;;;;-1:-1:-1;20255:377:0;;:::i;20159:88::-;;;:::i;20640:436::-;;;;;;;;;;;;;;;;-1:-1:-1;20640:436:0;;;;;;;;;:::i;28748:173::-;;;;;;;;;;;;;;;;-1:-1:-1;28748:173:0;;:::i;29224:98::-;;;:::i;18417:198::-;;;;;;;;;;;;;;;;-1:-1:-1;18417:198:0;-1:-1:-1;;;;;18417:198:0;;:::i;16274:148::-;;;:::i;15632:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15632:79:0;;;;;;;;;;;;;;18128:87;;;:::i;19665:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19665:269:0;;;;;;;;:::i;18623:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18623:167:0;;;;;;;;:::i;19942:110::-;;;;;;;;;;;;;;;;-1:-1:-1;19942:110:0;-1:-1:-1;;;;;19942:110:0;;:::i;29334:162::-;;;;;;;;;;;;;;;;-1:-1:-1;29334:162:0;;:::i;18798:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18798:143:0;;;;;;;;;;:::i;21345:443::-;;;;;;;;;;;;;;;;-1:-1:-1;21345:443:0;-1:-1:-1;;;;;21345:443:0;;:::i;16577:244::-;;;;;;;;;;;;;;;;-1:-1:-1;16577:244:0;-1:-1:-1;;;;;16577:244:0;;:::i;21796:478::-;;;;;;;;;;;;;;;;-1:-1:-1;21796:478:0;-1:-1:-1;;;;;21796:478:0;;:::i;18037:83::-;18107:5;;;;;;;;;;;;-1:-1:-1;;;18107:5:0;;;;18037:83;:::o;18949:161::-;19024:4;19041:39;19050:12;:10;:12::i;:::-;19064:7;19073:6;19041:8;:39::i;:::-;-1:-1:-1;19098:4:0;18949:161;;;;;:::o;20060:87::-;20129:10;;20060:87;:::o;18314:95::-;18394:7;;18314:95;:::o;19118:313::-;19216:4;19233:36;19243:6;19251:9;19262:6;19233:9;:36::i;:::-;19280:121;19289:6;19297:12;:10;:12::i;:::-;19311:89;19349:6;19311:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19311:19:0;;;;;;:11;:19;;;;;;19331:12;:10;:12::i;:::-;-1:-1:-1;;;;;19311:33:0;;;;;;;;;;;;-1:-1:-1;19311:33:0;;;:89;:37;:89::i;:::-;19280:8;:121::i;:::-;-1:-1:-1;19419:4:0;19118:313;;;;;:::o;21084:253::-;21150:7;21189;;21178;:18;;21170:73;;;;-1:-1:-1;;;21170:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21254:19;21277:10;:8;:10::i;:::-;21254:33;-1:-1:-1;21305:24:0;:7;21254:33;21305:11;:24::i;:::-;21298:31;;;21084:253;;;;:::o;18223:83::-;17348:1;18223:83;:::o;19439:218::-;19527:4;19544:83;19553:12;:10;:12::i;:::-;19567:7;19576:50;19615:10;19576:11;:25;19588:12;:10;:12::i;:::-;-1:-1:-1;;;;;19576:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19576:25:0;;;:34;;;;;;;;;;;:38;:50::i;28929:180::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;29018:2:::1;29007:7;:13;;:32;;;;;29035:4;29024:7;:15;;29007:32;28999:72;;;::::0;;-1:-1:-1;;;28999:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29082:9;:19:::0;28929:180::o;20255:377::-;20307:14;20324:12;:10;:12::i;:::-;-1:-1:-1;;;;;20356:19:0;;;;;;:11;:19;;;;;;20307:29;;-1:-1:-1;20356:19:0;;20355:20;20347:77;;;;-1:-1:-1;;;20347:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20436:15;20460:19;20471:7;20460:10;:19::i;:::-;-1:-1:-1;;;;;;;;;20508:15:0;;;;;;:7;:15;;;;;;20435:44;;-1:-1:-1;20508:28:0;;:15;-1:-1:-1;20435:44:0;20508:19;:28::i;:::-;-1:-1:-1;;;;;20490:15:0;;;;;;:7;:15;;;;;:46;20557:7;;:20;;20569:7;20557:11;:20::i;:::-;20547:7;:30;20601:10;;:23;;20616:7;20601:14;:23::i;:::-;20588:10;:36;-1:-1:-1;;;20255:377:0:o;20159:88::-;20228:11;;20159:88;:::o;20640:436::-;20730:7;20769;;20758;:18;;20750:62;;;;;-1:-1:-1;;;20750:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20828:17;20823:246;;20863:15;20887:19;20898:7;20887:10;:19::i;:::-;-1:-1:-1;20862:44:0;;-1:-1:-1;20921:14:0;;-1:-1:-1;;;;;20921:14:0;20823:246;20970:23;21001:19;21012:7;21001:10;:19::i;:::-;-1:-1:-1;20968:52:0;;-1:-1:-1;21035:22:0;;-1:-1:-1;;;;;21035:22:0;28748:173;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;28834:2:::1;28824:6;:12;;:30;;;;;28850:4;28840:6;:14;;28824:30;28816:69;;;::::0;;-1:-1:-1;;;28816:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;28896:8;:17:::0;28748:173::o;29224:98::-;29270:7;29297:17;:15;:17::i;:::-;29290:24;;29224:98;:::o;18417:198::-;-1:-1:-1;;;;;18507:20:0;;18483:7;18507:20;;;:11;:20;;;;;;;;18503:49;;;-1:-1:-1;;;;;;18536:16:0;;;;;;:7;:16;;;;;;18529:23;;18503:49;-1:-1:-1;;;;;18590:16:0;;;;;;:7;:16;;;;;;18570:37;;:19;:37::i;16274:148::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;16381:1:::1;16365:6:::0;;16344:40:::1;::::0;-1:-1:-1;;;;;16365:6:0;;::::1;::::0;16344:40:::1;::::0;16381:1;;16344:40:::1;16412:1;16395:19:::0;;-1:-1:-1;;;;;;16395:19:0::1;::::0;;16274:148::o;15632:79::-;15670:7;15697:6;-1:-1:-1;;;;;15697:6:0;15632:79;:::o;18128:87::-;18200:7;;;;;;;;;;;;-1:-1:-1;;;18200:7:0;;;;18128:87;:::o;19665:269::-;19758:4;19775:129;19784:12;:10;:12::i;:::-;19798:7;19807:96;19846:15;19807:96;;;;;;;;;;;;;;;;;:11;:25;19819:12;:10;:12::i;:::-;-1:-1:-1;;;;;19807:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19807:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18623:167::-;18701:4;18718:42;18728:12;:10;:12::i;:::-;18742:9;18753:6;18718:9;:42::i;19942:110::-;-1:-1:-1;;;;;20024:20:0;20000:4;20024:20;;;:11;:20;;;;;;;;;19942:110::o;29334:162::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;29428:60:::1;29472:5;29428:25;29440:12;29428:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;29413:12;:75:::0;-1:-1:-1;29334:162:0:o;18798:143::-;-1:-1:-1;;;;;18906:18:0;;;18879:7;18906:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18798:143::o;21345:443::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;21437:42:::1;-1:-1:-1::0;;;;;21426:53:0;::::1;;;21418:100;;;;-1:-1:-1::0;;;21418:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21538:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21537:21;21529:61;;;::::0;;-1:-1:-1;;;21529:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21604:16:0;::::1;21623:1;21604:16:::0;;;:7:::1;:16;::::0;;;;;:20;21601:108:::1;;-1:-1:-1::0;;;;;21680:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;21660:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;21641:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;21601:108:::1;-1:-1:-1::0;;;;;21719:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;21719:27:0::1;21742:4;21719:27:::0;;::::1;::::0;;;21757:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;21757:23:0::1;::::0;;::::1;::::0;;21345:443::o;16577:244::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16666:22:0;::::1;16658:73;;;;-1:-1:-1::0;;;16658:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16768:6;::::0;;16747:38:::1;::::0;-1:-1:-1;;;;;16747:38:0;;::::1;::::0;16768:6;::::1;::::0;16747:38:::1;::::0;::::1;16796:6;:17:::0;;-1:-1:-1;;;;;;16796:17:0::1;-1:-1:-1::0;;;;;16796:17:0;;;::::1;::::0;;;::::1;::::0;;16577:244::o;21796:478::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21877:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21869:60;;;::::0;;-1:-1:-1;;;21869:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;21945:9;21940:327;21964:9;:16:::0;21960:20;::::1;21940:327;;;22022:7;-1:-1:-1::0;;;;;22006:23:0::1;:9;22016:1;22006:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22006:12:0::1;:23;22002:254;;;22065:9;22075:16:::0;;-1:-1:-1;;22075:20:0;;;22065:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22050:9:::1;:12:::0;;-1:-1:-1;;;;;22065:31:0;;::::1;::::0;22060:1;;22050:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22050:46:0::1;-1:-1:-1::0;;;;;22050:46:0;;::::1;;::::0;;22115:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22154:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22154:28:0::1;::::0;;22201:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22201:15:0;;;;;-1:-1:-1;;;;;;22201:15:0::1;::::0;;;;;22235:5:::1;;22002:254;21982:3;;21940:327;;;;21796:478:::0;:::o;96:106::-;184:10;96:106;:::o;22282:337::-;-1:-1:-1;;;;;22375:19:0;;22367:68;;;;-1:-1:-1;;;22367:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22454:21:0;;22446:68;;;;-1:-1:-1;;;22446:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22527:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22579:32;;;;;;;;;;;;;;;;;22282:337;;;:::o;22627:1096::-;-1:-1:-1;;;;;22724:20:0;;22716:70;;;;-1:-1:-1;;;22716:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22805:23:0;;22797:71;;;;-1:-1:-1;;;22797:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22896:1;22887:6;:10;22879:64;;;;-1:-1:-1;;;22879:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22977:7;:5;:7::i;:::-;-1:-1:-1;;;;;22967:17:0;:6;-1:-1:-1;;;;;22967:17:0;;;:41;;;;;23001:7;:5;:7::i;:::-;-1:-1:-1;;;;;22988:20:0;:9;-1:-1:-1;;;;;22988:20:0;;;22967:41;22964:134;;;23041:12;;23031:6;:22;;23023:75;;;;-1:-1:-1;;;23023:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23123:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23147:22:0;;;;;;:11;:22;;;;;;;;23146:23;23123:46;23119:597;;;23186:48;23208:6;23216:9;23227:6;23186:21;:48::i;:::-;23119:597;;;-1:-1:-1;;;;;23257:19:0;;;;;;:11;:19;;;;;;;;23256:20;:46;;;;-1:-1:-1;;;;;;23280:22:0;;;;;;:11;:22;;;;;;;;23256:46;23252:464;;;23319:46;23339:6;23347:9;23358:6;23319:19;:46::i;23252:464::-;-1:-1:-1;;;;;23388:19:0;;;;;;:11;:19;;;;;;;;23387:20;:47;;;;-1:-1:-1;;;;;;23412:22:0;;;;;;:11;:22;;;;;;;;23411:23;23387:47;23383:333;;;23451:44;23469:6;23477:9;23488:6;23451:17;:44::i;23383:333::-;-1:-1:-1;;;;;23517:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;23540:22:0;;;;;;:11;:22;;;;;;;;23517:45;23513:203;;;23579:48;23601:6;23609:9;23620:6;23579:21;:48::i;23513:203::-;23660:44;23678:6;23686:9;23697:6;23660:17;:44::i;:::-;22627:1096;;;:::o;4908:192::-;4994:7;5030:12;5022:6;;;;5014:29;;;;-1:-1:-1;;;5014:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5066:5:0;;;4908:192::o;27910:163::-;27951:7;27972:15;27989;28008:19;:17;:19::i;:::-;27971:56;;-1:-1:-1;27971:56:0;-1:-1:-1;28045:20:0;27971:56;;28045:11;:20::i;:::-;28038:27;;;;27910:163;:::o;6306:132::-;6364:7;6391:39;6395:1;6398;6391:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6384:46;6306:132;-1:-1:-1;;;6306:132:0:o;4005:181::-;4063:7;4095:5;;;4119:6;;;;4111:46;;;;;-1:-1:-1;;;4111:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26612:470;26671:7;26680;26689;26698;26707;26716;26737:23;26762:12;26776:13;26793:41;26805:7;26814:8;;26824:9;;26793:11;:41::i;:::-;26736:98;;;;;;26845:19;26868:10;:8;:10::i;:::-;26845:33;;26890:15;26907:23;26932:12;26948:46;26960:7;26969:4;26975:5;26982:11;26948;:46::i;:::-;26889:105;;-1:-1:-1;26889:105:0;-1:-1:-1;26889:105:0;-1:-1:-1;27045:15:0;;-1:-1:-1;27062:4:0;;-1:-1:-1;27068:5:0;;-1:-1:-1;;;;;26612:470:0;;;;;;;:::o;4469:136::-;4527:7;4554:43;4558:1;4561;4554:43;;;;;;;;;;;;;;;;;:3;:43::i;29117:95::-;29192:12;;29117:95;:::o;5359:471::-;5417:7;5662:6;5658:47;;-1:-1:-1;5692:1:0;5685:8;;5658:47;5729:5;;;5733:1;5729;:5;:1;5753:5;;;;;:10;5745:56;;;;-1:-1:-1;;;5745:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24974:632;25076:19;25099:10;:8;:10::i;:::-;25076:33;;25121:15;25138:23;25163:12;25177:23;25202:12;25216:13;25233:19;25244:7;25233:10;:19::i;:::-;25120:132;;;;;;;;;;;;25263:13;25280:22;25290:11;25280:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25331:15:0;;;;;;:7;:15;;;;;;25263:39;;-1:-1:-1;25331:28:0;;25351:7;25331:19;:28::i;:::-;-1:-1:-1;;;;;25313:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25388:7;:15;;;;:28;;25408:7;25388:19;:28::i;:::-;-1:-1:-1;;;;;25370:15:0;;;;;;;:7;:15;;;;;;:46;;;;25448:18;;;;;;;:39;;25471:15;25448:22;:39::i;:::-;-1:-1:-1;;;;;25427:18:0;;;;;;:7;:18;;;;;:60;25501:37;25513:4;25519:5;25526:4;25532:5;25501:11;:37::i;:::-;25571:9;-1:-1:-1;;;;;25554:44:0;25563:6;-1:-1:-1;;;;;25554:44:0;;25582:15;25554:44;;;;;;;;;;;;;;;;;;24974:632;;;;;;;;;;;:::o;24314:652::-;24414:19;24437:10;:8;:10::i;:::-;24414:33;;24459:15;24476:23;24501:12;24515:23;24540:12;24554:13;24571:19;24582:7;24571:10;:19::i;:::-;24458:132;;;;;;;;;;;;24601:13;24618:22;24628:11;24618:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24669:15:0;;;;;;:7;:15;;;;;;24601:39;;-1:-1:-1;24669:28:0;;24689:7;24669:19;:28::i;:::-;-1:-1:-1;;;;;24651:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;24729:18;;;;;:7;:18;;;;;:39;;24752:15;24729:22;:39::i;:::-;-1:-1:-1;;;;;24708:18:0;;;;;;:7;:18;;;;;;;;:60;;;;24800:7;:18;;;;:39;;24823:15;24800:22;:39::i;23731:575::-;23829:19;23852:10;:8;:10::i;:::-;23829:33;;23874:15;23891:23;23916:12;23930:23;23955:12;23969:13;23986:19;23997:7;23986:10;:19::i;:::-;23873:132;;;;;;;;;;;;24016:13;24033:22;24043:11;24033:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24084:15:0;;;;;;:7;:15;;;;;;24016:39;;-1:-1:-1;24084:28:0;;24104:7;24084:19;:28::i;25614:708::-;25716:19;25739:10;:8;:10::i;:::-;25716:33;;25761:15;25778:23;25803:12;25817:23;25842:12;25856:13;25873:19;25884:7;25873:10;:19::i;:::-;25760:132;;;;;;;;;;;;25903:13;25920:22;25930:11;25920:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25971:15:0;;;;;;:7;:15;;;;;;25903:39;;-1:-1:-1;25971:28:0;;25991:7;25971:19;:28::i;:::-;-1:-1:-1;;;;;25953:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26028:7;:15;;;;:28;;26048:7;26028:19;:28::i;28081:561::-;28178:7;;28214;;28131;;;;;28238:289;28262:9;:16;28258:20;;28238:289;;;28328:7;28304;:21;28312:9;28322:1;28312:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28312:12:0;28304:21;;;;;;;;;;;;;:31;;:66;;;28363:7;28339;:21;28347:9;28357:1;28347:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28347:12:0;28339:21;;;;;;;;;;;;;:31;28304:66;28300:97;;;28380:7;;28389;;28372:25;;;;;;;;;28300:97;28422:34;28434:7;:21;28442:9;28452:1;28442:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28442:12:0;28434:21;;;;;;;;;;;;;28422:7;;:11;:34::i;:::-;28412:44;;28481:34;28493:7;:21;28501:9;28511:1;28501:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28501:12:0;28493:21;;;;;;;;;;;;;28481:7;;:11;:34::i;:::-;28471:44;-1:-1:-1;28280:3:0;;28238:289;;;-1:-1:-1;28563:7:0;;28551;;:20;;:11;:20::i;:::-;28541:7;:30;28537:61;;;28581:7;;28590;;28573:25;;;;;;;;28537:61;28617:7;;-1:-1:-1;28626:7:0;-1:-1:-1;28081:561:0;;;:::o;6934:278::-;7020:7;7055:12;7048:5;7040:28;;;;-1:-1:-1;;;7040:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7079:9;7095:1;7091;:5;;;;;;;6934:278;-1:-1:-1;;;;;6934:278:0:o;27090:395::-;27183:7;;;;27236:50;27282:3;27237:39;27282:3;27237:39;27238:7;27250:6;27238:11;:19::i;27236:50::-;27221:65;-1:-1:-1;27297:13:0;27313:51;27360:3;27314:40;27360:3;27314:40;27315:7;27327;27315:11;:20::i;27313:51::-;27297:67;-1:-1:-1;27375:23:0;27401:28;27297:67;27401:17;:7;27413:4;27401:11;:17::i;:::-;:21;;:28::i;:::-;27375:54;27465:4;;-1:-1:-1;27471:5:0;;-1:-1:-1;27090:395:0;;-1:-1:-1;;;;;27090:395:0:o;27493:409::-;27603:7;;;;27659:24;:7;27671:11;27659;:24::i;:::-;27641:42;-1:-1:-1;27694:12:0;27709:21;:4;27718:11;27709:8;:21::i;:::-;27694:36;-1:-1:-1;27741:13:0;27757:22;:5;27767:11;27757:9;:22::i;:::-;27741:38;-1:-1:-1;27790:23:0;27816:28;27741:38;27816:17;:7;27828:4;27816:11;:17::i;:28::-;27863:7;;;;-1:-1:-1;27889:4:0;;-1:-1:-1;27493:409:0;;-1:-1:-1;;;;;;;27493:409:0:o;26330:274::-;26438:28;26460:5;26438:17;26450:4;26438:7;;:11;;:17;;;;:::i;:28::-;26428:7;:38;26490:10;;:20;;26505:4;26490:14;:20::i;:::-;26477:10;:33;26535:11;;:22;;26551:5;26535:15;:22::i;:::-;26521:11;:36;26578:7;;:18;;26590:5;26578:11;:18::i;:::-;26568:7;:28;-1:-1:-1;;;;26330:274:0:o

Swarm Source

ipfs://de288bc5666b0577dbc067e5c30228ba9e57409c61be0e88a1c500e846709b81

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.