ETH Price: $3,331.97 (-0.73%)

Token

OBELON KENOBI (OBELON)
 

Overview

Max Total Supply

100,000,000,000,000 OBELON

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
323,054,919,336.287168818 OBELON

Value
$0.00
0x10cbc9e6bd4e4351d59e1e9dd06e9fdb7da017a1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OBELON

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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

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

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;

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

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

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

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

    contract Ownable is Context {
        address private _owner;
        address private _previousOwner;
        uint256 private _lockTime;

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

        function geUnlockTime() public view returns (uint256) {
            return _lockTime;
        }

        //Locks the contract for owner for the amount of time provided
        function lock(uint256 time) public virtual onlyOwner {
            _previousOwner = _owner;
            _owner = address(0);
            _lockTime = now + time;
            emit OwnershipTransferred(_owner, address(0));
        }
        
        //Unlocks the contract for owner when _lockTime is exceeds
        function unlock() public virtual {
            require(_previousOwner == msg.sender, "You don't have permission to unlock");
            require(now > _lockTime , "Contract is locked until 7 days");
            emit OwnershipTransferred(_owner, _previousOwner);
            _owner = _previousOwner;
        }
    }  

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

    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 IUniswapV2Router01 {
        function factory() external pure returns (address);
        function WETH() external pure returns (address);

        function addLiquidity(
            address tokenA,
            address tokenB,
            uint amountADesired,
            uint amountBDesired,
            uint amountAMin,
            uint amountBMin,
            address to,
            uint deadline
        ) external returns (uint amountA, uint amountB, uint liquidity);
        function addLiquidityETH(
            address token,
            uint amountTokenDesired,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline
        ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
        function removeLiquidity(
            address tokenA,
            address tokenB,
            uint liquidity,
            uint amountAMin,
            uint amountBMin,
            address to,
            uint deadline
        ) external returns (uint amountA, uint amountB);
        function removeLiquidityETH(
            address token,
            uint liquidity,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline
        ) external returns (uint amountToken, uint amountETH);
        function removeLiquidityWithPermit(
            address tokenA,
            address tokenB,
            uint liquidity,
            uint amountAMin,
            uint amountBMin,
            address to,
            uint deadline,
            bool approveMax, uint8 v, bytes32 r, bytes32 s
        ) external returns (uint amountA, uint amountB);
        function removeLiquidityETHWithPermit(
            address token,
            uint liquidity,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline,
            bool approveMax, uint8 v, bytes32 r, bytes32 s
        ) external returns (uint amountToken, uint amountETH);
        function swapExactTokensForTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
        ) external returns (uint[] memory amounts);
        function swapTokensForExactTokens(
            uint amountOut,
            uint amountInMax,
            address[] calldata path,
            address to,
            uint deadline
        ) external returns (uint[] memory amounts);
        function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
            external
            payable
            returns (uint[] memory amounts);
        function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
            external
            returns (uint[] memory amounts);
        function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
            external
            returns (uint[] memory amounts);
        function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
            external
            payable
            returns (uint[] memory amounts);

        function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
        function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
        function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
        function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
        function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
    }

    interface IUniswapV2Router02 is IUniswapV2Router01 {
        function removeLiquidityETHSupportingFeeOnTransferTokens(
            address token,
            uint liquidity,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline
        ) external returns (uint amountETH);
        function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
            address token,
            uint liquidity,
            uint amountTokenMin,
            uint amountETHMin,
            address to,
            uint deadline,
            bool approveMax, uint8 v, bytes32 r, bytes32 s
        ) external returns (uint amountETH);

        function swapExactTokensForTokensSupportingFeeOnTransferTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
        ) external;
        function swapExactETHForTokensSupportingFeeOnTransferTokens(
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
        ) external payable;
        function swapExactTokensForETHSupportingFeeOnTransferTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
        ) external;
    }

    // Contract implementarion
    contract OBELON 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 _isExcludedFromFee;

        mapping (address => bool) private _isExcluded;
        address[] private _excluded;
    
        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 100000000 * 10**6 * 10**9;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'OBELON KENOBI';
        string private _symbol = 'OBELON';
        uint8 private _decimals = 9;
        
        // Tax and charity fees will start at 0 so we don't have a big impact when deploying to Uniswap
        // Charity wallet address is null but the method to set the address is exposed
        uint256 private _taxFee = 5; 
        uint256 private _charityFee = 5;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousCharityFee = _charityFee;

        address payable public _charityWalletAddress = 0xbA8b6830F3a39b7C12B2A532E82305B46f7FA87f;

        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 private _maxTxAmount = 100000000000000e9;
        // We will set a minimum amount of tokens to be swaped => 5M
        uint256 private _numOfTokensToExchangeForCharity = 5 * 10**6 * 10**9;

        event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        event SwapEnabledUpdated(bool enabled);

        modifier lockTheSwap {
            inSwap = true;
            _;
            inSwap = false;
        }

        constructor () public {
            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
            // Create a uniswap pair for this new token
            uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
                .createPair(address(this), _uniswapV2Router.WETH());

            // set the rest of the contract variables
            uniswapV2Router = _uniswapV2Router;

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;

            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 setExcludeFromFee(address account, bool excluded) external onlyOwner() {
            _isExcludedFromFee[account] = excluded;
        }

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

        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 removeAllFee() private {
            if(_taxFee == 0 && _charityFee == 0) return;
            
            _previousTaxFee = _taxFee;
            _previousCharityFee = _charityFee;
            
            _taxFee = 0;
            _charityFee = 0;
        }
    
        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _charityFee = _previousCharityFee;
        }
    
        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }

        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 <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular charity event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));
            
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
            
            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForCharity;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the charity wallet
                swapTokensForEth(contractTokenBalance);
                
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToCharity(address(this).balance);
                }
            }
            
            //indicates if fee should be deducted from transfer
            bool takeFee = true;
            
            //if any account belongs to _isExcludedFromFee account then remove the fee
            if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
                takeFee = false;
            }
            
            //transfer amount, it will take tax and charity fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

        function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{
            // generate the uniswap pair path of token -> weth
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = uniswapV2Router.WETH();

            _approve(address(this), address(uniswapV2Router), tokenAmount);

            // make the swap
            uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                tokenAmount,
                0, // accept any amount of ETH
                path,
                address(this),
                block.timestamp
            );
        }
        
        function sendETHToCharity(uint256 amount) private {
            _charityWalletAddress.transfer(amount);
        }
        
        // We are exposing these functions to be able to manual swap and send
        // in case the token is highly valued and 5M becomes too much
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }
        
        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToCharity(contractETHBalance);
        }

        function setSwapEnabled(bool enabled) external onlyOwner(){
            swapEnabled = enabled;
        }
        
        function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
            if(!takeFee)
                removeAllFee();

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

            if(!takeFee)
                restoreAllFee();
        }

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

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

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

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

        function _takeCharity(uint256 tCharity) private {
            uint256 currentRate =  _getRate();
            uint256 rCharity = tCharity.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rCharity);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tCharity);
        }

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

         //to recieve ETH from uniswapV2Router when swaping
        receive() external payable {}

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

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

        function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee);
            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 _taxFee;
        }

        function _getMaxTxAmount() private view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }
        
        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 10, 'taxFee should be in 1 - 10');
            _taxFee = taxFee;
        }
        
        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            require(maxTxAmount >= 100000000000000e9 , 'maxTxAmount should be greater than 100000000000000e9');
            _maxTxAmount = maxTxAmount;
        }
    }

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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_charityWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","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":"geUnlockTime","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405269152d02c7e14af6800000600955600954600019816200002057fe5b0660001903600a556040518060400160405280600d81526020017f4f42454c4f4e204b454e4f424900000000000000000000000000000000000000815250600c9080519060200190620000759291906200066c565b506040518060400160405280600681526020017f4f42454c4f4e0000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c39291906200066c565b506009600e60006101000a81548160ff021916908360ff1602179055506005600f556005601055600f5460115560105460125573ba8b6830f3a39b7c12b2a532e82305b46f7fa87f601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601360146101000a81548160ff0219169083151502179055506001601360156101000a81548160ff02191690831515021790555069152d02c7e14af68000006014556611c37937e08000601555348015620001a757600080fd5b506000620001ba6200063b60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a54600360006200026f6200063b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030d57600080fd5b505afa15801562000322573d6000803e3d6000fd5b505050506040513d60208110156200033957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003ad57600080fd5b505afa158015620003c2573d6000803e3d6000fd5b505050506040513d6020811015620003d957600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200045457600080fd5b505af115801562000469573d6000803e3d6000fd5b505050506040513d60208110156200048057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620005146200064360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005cd6200063b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000712565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006af57805160ff1916838001178555620006e0565b82800160010185558215620006e0579182015b82811115620006df578251825591602001919060010190620006c2565b5b509050620006ef9190620006f3565b5090565b5b808211156200070e576000816000905550600101620006f4565b5090565b60805160601c60a05160601c614d4f62000750600039806113745280613045525080610da252806134a0528061358c52806135b35250614d4f6000f3fe6080604052600436106102135760003560e01c8063715018a611610118578063cba0e996116100a0578063f2cc0c181161006f578063f2cc0c1814610ba1578063f2fde38b14610bf2578063f429389014610c43578063f815a84214610c5a578063f84354f114610c855761021a565b8063cba0e99614610a3d578063dd46706414610aa4578063dd62ed3e14610adf578063e01af92c14610b645761021a565b8063a457c2d7116100e7578063a457c2d7146108bc578063a69df4b51461092d578063a9059cbb14610944578063af9549e0146109b5578063b6c5232414610a125761021a565b8063715018a61461079357806376d4ab99146107aa5780638da5cb5b146107eb57806395d89b411461082c5761021a565b8063395093511161019b57806351bc3c851161016a57806351bc3c85146106485780635342acb41461065f5780635880b873146106c65780636ddd17131461070157806370a082311461072e5761021a565b806339509351146105005780633bd5d173146105715780634549b039146105ac57806349bd5a5e146106075761021a565b806318160ddd116101e257806318160ddd1461038c5780631bbae6e0146103b757806323b872dd146103f25780632d83811914610483578063313ce567146104d25761021a565b806306fdde031461021f578063095ea7b3146102af57806313114a9d146103205780631694505e1461034b5761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610cd6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102bb57600080fd5b50610308600480360360408110156102d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d78565b60405180821515815260200191505060405180910390f35b34801561032c57600080fd5b50610335610d96565b6040518082815260200191505060405180910390f35b34801561035757600080fd5b50610360610da0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039857600080fd5b506103a1610dc4565b6040518082815260200191505060405180910390f35b3480156103c357600080fd5b506103f0600480360360208110156103da57600080fd5b8101908080359060200190929190505050610dce565b005b3480156103fe57600080fd5b5061046b6004803603606081101561041557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f03565b60405180821515815260200191505060405180910390f35b34801561048f57600080fd5b506104bc600480360360208110156104a657600080fd5b8101908080359060200190929190505050610fdc565b6040518082815260200191505060405180910390f35b3480156104de57600080fd5b506104e7611060565b604051808260ff16815260200191505060405180910390f35b34801561050c57600080fd5b506105596004803603604081101561052357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611077565b60405180821515815260200191505060405180910390f35b34801561057d57600080fd5b506105aa6004803603602081101561059457600080fd5b810190808035906020019092919050505061112a565b005b3480156105b857600080fd5b506105f1600480360360408110156105cf57600080fd5b81019080803590602001909291908035151590602001909291905050506112bb565b6040518082815260200191505060405180910390f35b34801561061357600080fd5b5061061c611372565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561065457600080fd5b5061065d611396565b005b34801561066b57600080fd5b506106ae6004803603602081101561068257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611477565b60405180821515815260200191505060405180910390f35b3480156106d257600080fd5b506106ff600480360360208110156106e957600080fd5b81019080803590602001909291905050506114cd565b005b34801561070d57600080fd5b50610716611623565b60405180821515815260200191505060405180910390f35b34801561073a57600080fd5b5061077d6004803603602081101561075157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611636565b6040518082815260200191505060405180910390f35b34801561079f57600080fd5b506107a8611721565b005b3480156107b657600080fd5b506107bf6118a7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107f757600080fd5b506108006118cd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561083857600080fd5b506108416118f6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610881578082015181840152602081019050610866565b50505050905090810190601f1680156108ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108c857600080fd5b50610915600480360360408110156108df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611998565b60405180821515815260200191505060405180910390f35b34801561093957600080fd5b50610942611a65565b005b34801561095057600080fd5b5061099d6004803603604081101561096757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c82565b60405180821515815260200191505060405180910390f35b3480156109c157600080fd5b50610a10600480360360408110156109d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611ca0565b005b348015610a1e57600080fd5b50610a27611dc3565b6040518082815260200191505060405180910390f35b348015610a4957600080fd5b50610a8c60048036036020811015610a6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dcd565b60405180821515815260200191505060405180910390f35b348015610ab057600080fd5b50610add60048036036020811015610ac757600080fd5b8101908080359060200190929190505050611e23565b005b348015610aeb57600080fd5b50610b4e60048036036040811015610b0257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612014565b6040518082815260200191505060405180910390f35b348015610b7057600080fd5b50610b9f60048036036020811015610b8757600080fd5b8101908080351515906020019092919050505061209b565b005b348015610bad57600080fd5b50610bf060048036036020811015610bc457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612180565b005b348015610bfe57600080fd5b50610c4160048036036020811015610c1557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612533565b005b348015610c4f57600080fd5b50610c5861273e565b005b348015610c6657600080fd5b50610c6f612817565b6040518082815260200191505060405180910390f35b348015610c9157600080fd5b50610cd460048036036020811015610ca857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061281f565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b5050505050905090565b6000610d8c610d85612ba9565b8484612bb1565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b610dd6612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b69152d02c7e14af6800000811015610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614b6d6034913960400191505060405180910390fd5b8060148190555050565b6000610f10848484612da8565b610fd184610f1c612ba9565b610fcc85604051806060016040528060288152602001614bea60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f82612ba9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131819092919063ffffffff16565b612bb1565b600190509392505050565b6000600a54821115611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614afb602a913960400191505060405180910390fd5b6000611043613241565b9050611058818461326c90919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b6000611120611084612ba9565b8461111b8560056000611095612ba9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b612bb1565b6001905092915050565b6000611134612ba9565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614ca6602c913960400191505060405180910390fd5b60006111e48361333e565b5050505050905061123d81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061129581600a546133a590919063ffffffff16565b600a819055506112b083600b546132b690919063ffffffff16565b600b81905550505050565b6000600954831115611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816113555760006113458461333e565b505050505090508091505061136c565b60006113608461333e565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61139e612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061146930611636565b9050611474816133ef565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114d5612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611595576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156115a75750600a8111155b611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20313000000000000081525060200191505060405180910390fd5b80600f8190555050565b601360159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061171c565b611719600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fdc565b90505b919050565b611729612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561198e5780601f106119635761010080835404028352916020019161198e565b820191906000526020600020905b81548152906001019060200180831161197157829003601f168201915b5050505050905090565b6000611a5b6119a5612ba9565b84611a5685604051806060016040528060258152602001614cf560259139600560006119cf612ba9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131819092919063ffffffff16565b612bb1565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614cd26023913960400191505060405180910390fd5b6002544211611b82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611c96611c8f612ba9565b8484612da8565b6001905092915050565b611ca8612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611e2b612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6120a3612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360156101000a81548160ff02191690831515021790555050565b612188612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612248576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614c846022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561247557612431600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fdc565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61253b612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614b256026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612746612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612814816136d3565b50565b600047905090565b612827612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015612ba5578173ffffffffffffffffffffffffffffffffffffffff16600882815481106129da57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b9857600860016008805490500381548110612a3657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110612a6e57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008805480612b5e57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612ba5565b80806001019150506129a9565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614c606024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614b4b6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614c3b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ad86023913960400191505060405180910390fd5b60008111612f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c126029913960400191505060405180910390fd5b612f156118cd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612f835750612f536118cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fe457601454811115612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614ba16028913960400191505060405180910390fd5b5b6000612fef30611636565b905060145481106130005760145490505b60006015548210159050601360149054906101000a900460ff161580156130335750601360159054906101000a900460ff165b801561303c5750805b801561309457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156130bc576130a2826133ef565b600047905060008111156130ba576130b9476136d3565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131635750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561316d57600090505b6131798686868461373f565b505050505050565b600083831115829061322e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156131f35780820151818401526020810190506131d8565b50505050905090810190601f1680156132205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061324e613a50565b91509150613265818361326c90919063ffffffff16565b9250505090565b60006132ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ce1565b905092915050565b600080828401905083811015613334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061335b8a600f54601054613da7565b925092509250600061336b613241565b9050600080600061337d8e8786613e3d565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b60006133e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613181565b905092915050565b6001601360146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff8111801561342457600080fd5b506040519080825280602002602001820160405280156134535781602001602082028036833780820191505090505b509050308160008151811061346457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561350457600080fd5b505afa158015613518573d6000803e3d6000fd5b505050506040513d602081101561352e57600080fd5b81019080805190602001909291905050508160018151811061354c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135b1307f000000000000000000000000000000000000000000000000000000000000000084612bb1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613673578082015181840152602081019050613658565b505050509050019650505050505050600060405180830381600087803b15801561369c57600080fd5b505af11580156136b0573d6000803e3d6000fd5b50505050506000601360146101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561373b573d6000803e3d6000fd5b5050565b8061374d5761374c613e9b565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137f05750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561380557613800848484613ede565b613a3c565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138a85750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138bd576138b884848461413e565b613a3b565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139615750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139765761397184848461439e565b613a3a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a185750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a2d57613a28848484614569565b613a39565b613a3884848461439e565b5b5b5b5b80613a4a57613a4961485e565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613ca457826003600060088481548110613a8357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b6a5750816004600060088481548110613b0257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b8157600a5460095494509450505050613cdd565b613c0a6003600060088481548110613b9557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846133a590919063ffffffff16565b9250613c956004600060088481548110613c2057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836133a590919063ffffffff16565b91508080600101915050613a64565b50613cbc600954600a5461326c90919063ffffffff16565b821015613cd457600a54600954935093505050613cdd565b81819350935050505b9091565b60008083118290613d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d52578082015181840152602081019050613d37565b50505050905090810190601f168015613d7f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d9957fe5b049050809150509392505050565b600080600080613dd36064613dc5888a61487290919063ffffffff16565b61326c90919063ffffffff16565b90506000613dfd6064613def888b61487290919063ffffffff16565b61326c90919063ffffffff16565b90506000613e2682613e18858c6133a590919063ffffffff16565b6133a590919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080613e56858861487290919063ffffffff16565b90506000613e6d868861487290919063ffffffff16565b90506000613e8482846133a590919063ffffffff16565b905082818395509550955050505093509350939050565b6000600f54148015613eaf57506000601054145b15613eb957613edc565b600f546011819055506010546012819055506000600f8190555060006010819055505b565b600080600080600080613ef08761333e565b955095509550955095509550613f4e87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fe386600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061407885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140c4816148f8565b6140ce8483614a9d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806141508761333e565b9550955095509550955095506141ae86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061424383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142d885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614324816148f8565b61432e8483614a9d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806143b08761333e565b95509550955095509550955061440e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144a385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144ef816148f8565b6144f98483614a9d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061457b8761333e565b9550955095509550955095506145d987600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061470383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061479885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147e4816148f8565b6147ee8483614a9d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154600f81905550601254601081905550565b60008083141561488557600090506148f2565b600082840290508284828161489657fe5b04146148ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614bc96021913960400191505060405180910390fd5b809150505b92915050565b6000614902613241565b90506000614919828461487290919063ffffffff16565b905061496d81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614a9857614a5483600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614ab282600a546133a590919063ffffffff16565b600a81905550614acd81600b546132b690919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e2031303030303030303030303030303065395472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209d98b88d23eb12410b49b6475debf0dc5920d5f7655892c796894f5c7aa9680264736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102135760003560e01c8063715018a611610118578063cba0e996116100a0578063f2cc0c181161006f578063f2cc0c1814610ba1578063f2fde38b14610bf2578063f429389014610c43578063f815a84214610c5a578063f84354f114610c855761021a565b8063cba0e99614610a3d578063dd46706414610aa4578063dd62ed3e14610adf578063e01af92c14610b645761021a565b8063a457c2d7116100e7578063a457c2d7146108bc578063a69df4b51461092d578063a9059cbb14610944578063af9549e0146109b5578063b6c5232414610a125761021a565b8063715018a61461079357806376d4ab99146107aa5780638da5cb5b146107eb57806395d89b411461082c5761021a565b8063395093511161019b57806351bc3c851161016a57806351bc3c85146106485780635342acb41461065f5780635880b873146106c65780636ddd17131461070157806370a082311461072e5761021a565b806339509351146105005780633bd5d173146105715780634549b039146105ac57806349bd5a5e146106075761021a565b806318160ddd116101e257806318160ddd1461038c5780631bbae6e0146103b757806323b872dd146103f25780632d83811914610483578063313ce567146104d25761021a565b806306fdde031461021f578063095ea7b3146102af57806313114a9d146103205780631694505e1461034b5761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610cd6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102bb57600080fd5b50610308600480360360408110156102d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d78565b60405180821515815260200191505060405180910390f35b34801561032c57600080fd5b50610335610d96565b6040518082815260200191505060405180910390f35b34801561035757600080fd5b50610360610da0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039857600080fd5b506103a1610dc4565b6040518082815260200191505060405180910390f35b3480156103c357600080fd5b506103f0600480360360208110156103da57600080fd5b8101908080359060200190929190505050610dce565b005b3480156103fe57600080fd5b5061046b6004803603606081101561041557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f03565b60405180821515815260200191505060405180910390f35b34801561048f57600080fd5b506104bc600480360360208110156104a657600080fd5b8101908080359060200190929190505050610fdc565b6040518082815260200191505060405180910390f35b3480156104de57600080fd5b506104e7611060565b604051808260ff16815260200191505060405180910390f35b34801561050c57600080fd5b506105596004803603604081101561052357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611077565b60405180821515815260200191505060405180910390f35b34801561057d57600080fd5b506105aa6004803603602081101561059457600080fd5b810190808035906020019092919050505061112a565b005b3480156105b857600080fd5b506105f1600480360360408110156105cf57600080fd5b81019080803590602001909291908035151590602001909291905050506112bb565b6040518082815260200191505060405180910390f35b34801561061357600080fd5b5061061c611372565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561065457600080fd5b5061065d611396565b005b34801561066b57600080fd5b506106ae6004803603602081101561068257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611477565b60405180821515815260200191505060405180910390f35b3480156106d257600080fd5b506106ff600480360360208110156106e957600080fd5b81019080803590602001909291905050506114cd565b005b34801561070d57600080fd5b50610716611623565b60405180821515815260200191505060405180910390f35b34801561073a57600080fd5b5061077d6004803603602081101561075157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611636565b6040518082815260200191505060405180910390f35b34801561079f57600080fd5b506107a8611721565b005b3480156107b657600080fd5b506107bf6118a7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107f757600080fd5b506108006118cd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561083857600080fd5b506108416118f6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610881578082015181840152602081019050610866565b50505050905090810190601f1680156108ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108c857600080fd5b50610915600480360360408110156108df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611998565b60405180821515815260200191505060405180910390f35b34801561093957600080fd5b50610942611a65565b005b34801561095057600080fd5b5061099d6004803603604081101561096757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c82565b60405180821515815260200191505060405180910390f35b3480156109c157600080fd5b50610a10600480360360408110156109d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611ca0565b005b348015610a1e57600080fd5b50610a27611dc3565b6040518082815260200191505060405180910390f35b348015610a4957600080fd5b50610a8c60048036036020811015610a6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dcd565b60405180821515815260200191505060405180910390f35b348015610ab057600080fd5b50610add60048036036020811015610ac757600080fd5b8101908080359060200190929190505050611e23565b005b348015610aeb57600080fd5b50610b4e60048036036040811015610b0257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612014565b6040518082815260200191505060405180910390f35b348015610b7057600080fd5b50610b9f60048036036020811015610b8757600080fd5b8101908080351515906020019092919050505061209b565b005b348015610bad57600080fd5b50610bf060048036036020811015610bc457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612180565b005b348015610bfe57600080fd5b50610c4160048036036020811015610c1557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612533565b005b348015610c4f57600080fd5b50610c5861273e565b005b348015610c6657600080fd5b50610c6f612817565b6040518082815260200191505060405180910390f35b348015610c9157600080fd5b50610cd460048036036020811015610ca857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061281f565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b5050505050905090565b6000610d8c610d85612ba9565b8484612bb1565b6001905092915050565b6000600b54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600954905090565b610dd6612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b69152d02c7e14af6800000811015610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614b6d6034913960400191505060405180910390fd5b8060148190555050565b6000610f10848484612da8565b610fd184610f1c612ba9565b610fcc85604051806060016040528060288152602001614bea60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f82612ba9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131819092919063ffffffff16565b612bb1565b600190509392505050565b6000600a54821115611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614afb602a913960400191505060405180910390fd5b6000611043613241565b9050611058818461326c90919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b6000611120611084612ba9565b8461111b8560056000611095612ba9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b612bb1565b6001905092915050565b6000611134612ba9565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614ca6602c913960400191505060405180910390fd5b60006111e48361333e565b5050505050905061123d81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061129581600a546133a590919063ffffffff16565b600a819055506112b083600b546132b690919063ffffffff16565b600b81905550505050565b6000600954831115611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816113555760006113458461333e565b505050505090508091505061136c565b60006113608461333e565b50505050915050809150505b92915050565b7f000000000000000000000000007d4fed479e6903a638ed4d7ad890df56f937cf81565b61139e612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061146930611636565b9050611474816133ef565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114d5612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611595576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156115a75750600a8111155b611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20313000000000000081525060200191505060405180910390fd5b80600f8190555050565b601360159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061171c565b611719600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fdc565b90505b919050565b611729612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561198e5780601f106119635761010080835404028352916020019161198e565b820191906000526020600020905b81548152906001019060200180831161197157829003601f168201915b5050505050905090565b6000611a5b6119a5612ba9565b84611a5685604051806060016040528060258152602001614cf560259139600560006119cf612ba9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131819092919063ffffffff16565b612bb1565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614cd26023913960400191505060405180910390fd5b6002544211611b82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611c96611c8f612ba9565b8484612da8565b6001905092915050565b611ca8612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611e2b612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6120a3612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360156101000a81548160ff02191690831515021790555050565b612188612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612248576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614c846022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561247557612431600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fdc565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61253b612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614b256026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612746612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612814816136d3565b50565b600047905090565b612827612ba9565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015612ba5578173ffffffffffffffffffffffffffffffffffffffff16600882815481106129da57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b9857600860016008805490500381548110612a3657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110612a6e57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008805480612b5e57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612ba5565b80806001019150506129a9565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614c606024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614b4b6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614c3b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ad86023913960400191505060405180910390fd5b60008111612f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c126029913960400191505060405180910390fd5b612f156118cd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612f835750612f536118cd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fe457601454811115612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614ba16028913960400191505060405180910390fd5b5b6000612fef30611636565b905060145481106130005760145490505b60006015548210159050601360149054906101000a900460ff161580156130335750601360159054906101000a900460ff165b801561303c5750805b801561309457507f000000000000000000000000007d4fed479e6903a638ed4d7ad890df56f937cf73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156130bc576130a2826133ef565b600047905060008111156130ba576130b9476136d3565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131635750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561316d57600090505b6131798686868461373f565b505050505050565b600083831115829061322e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156131f35780820151818401526020810190506131d8565b50505050905090810190601f1680156132205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061324e613a50565b91509150613265818361326c90919063ffffffff16565b9250505090565b60006132ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ce1565b905092915050565b600080828401905083811015613334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061335b8a600f54601054613da7565b925092509250600061336b613241565b9050600080600061337d8e8786613e3d565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b60006133e783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613181565b905092915050565b6001601360146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff8111801561342457600080fd5b506040519080825280602002602001820160405280156134535781602001602082028036833780820191505090505b509050308160008151811061346457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561350457600080fd5b505afa158015613518573d6000803e3d6000fd5b505050506040513d602081101561352e57600080fd5b81019080805190602001909291905050508160018151811061354c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135b1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612bb1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613673578082015181840152602081019050613658565b505050509050019650505050505050600060405180830381600087803b15801561369c57600080fd5b505af11580156136b0573d6000803e3d6000fd5b50505050506000601360146101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561373b573d6000803e3d6000fd5b5050565b8061374d5761374c613e9b565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137f05750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561380557613800848484613ede565b613a3c565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138a85750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138bd576138b884848461413e565b613a3b565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139615750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139765761397184848461439e565b613a3a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a185750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a2d57613a28848484614569565b613a39565b613a3884848461439e565b5b5b5b5b80613a4a57613a4961485e565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613ca457826003600060088481548110613a8357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b6a5750816004600060088481548110613b0257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b8157600a5460095494509450505050613cdd565b613c0a6003600060088481548110613b9557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846133a590919063ffffffff16565b9250613c956004600060088481548110613c2057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836133a590919063ffffffff16565b91508080600101915050613a64565b50613cbc600954600a5461326c90919063ffffffff16565b821015613cd457600a54600954935093505050613cdd565b81819350935050505b9091565b60008083118290613d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d52578082015181840152602081019050613d37565b50505050905090810190601f168015613d7f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d9957fe5b049050809150509392505050565b600080600080613dd36064613dc5888a61487290919063ffffffff16565b61326c90919063ffffffff16565b90506000613dfd6064613def888b61487290919063ffffffff16565b61326c90919063ffffffff16565b90506000613e2682613e18858c6133a590919063ffffffff16565b6133a590919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080613e56858861487290919063ffffffff16565b90506000613e6d868861487290919063ffffffff16565b90506000613e8482846133a590919063ffffffff16565b905082818395509550955050505093509350939050565b6000600f54148015613eaf57506000601054145b15613eb957613edc565b600f546011819055506010546012819055506000600f8190555060006010819055505b565b600080600080600080613ef08761333e565b955095509550955095509550613f4e87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fe386600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061407885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140c4816148f8565b6140ce8483614a9d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806141508761333e565b9550955095509550955095506141ae86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061424383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142d885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614324816148f8565b61432e8483614a9d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806143b08761333e565b95509550955095509550955061440e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144a385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144ef816148f8565b6144f98483614a9d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061457b8761333e565b9550955095509550955095506145d987600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133a590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061470383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061479885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147e4816148f8565b6147ee8483614a9d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154600f81905550601254601081905550565b60008083141561488557600090506148f2565b600082840290508284828161489657fe5b04146148ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614bc96021913960400191505060405180910390fd5b809150505b92915050565b6000614902613241565b90506000614919828461487290919063ffffffff16565b905061496d81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614a9857614a5483600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b690919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614ab282600a546133a590919063ffffffff16565b600a81905550614acd81600b546132b690919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e2031303030303030303030303030303065395472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209d98b88d23eb12410b49b6475debf0dc5920d5f7655892c796894f5c7aa9680264736f6c634300060c0033

Deployed Bytecode Sourcemap

26732:18777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29480:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30484:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31832:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28064:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29793:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45269:233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30669:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32840:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29690:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31010:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31939:405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32356:472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28126:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38133:168;;;;;;;;;;;;;:::i;:::-;;34581:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45068:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28207:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29908:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16567:160;;;;;;;;;;;;;:::i;:::-;;27962:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15865:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29583:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31252:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17674:313;;;;;;;;;;;;;:::i;:::-;;30130:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31675:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17171:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31545:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17352:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30321:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38504:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33121:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16899:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38321:171;;;;;;;;;;;;;:::i;:::-;;44930:118;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33608:522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29480:91;29517:13;29554:5;29547:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29480:91;:::o;30484:173::-;30559:4;30580:39;30589:12;:10;:12::i;:::-;30603:7;30612:6;30580:8;:39::i;:::-;30641:4;30634:11;;30484:173;;;;:::o;31832:95::-;31874:7;31905:10;;31898:17;;31832:95;:::o;28064:51::-;;;:::o;29793:103::-;29846:7;29877;;29870:14;;29793:103;:::o;45269:233::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45374:17:::1;45359:11;:32;;45351:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45479:11;45464:12;:26;;;;45269:233:::0;:::o;30669:329::-;30767:4;30788:36;30798:6;30806:9;30817:6;30788:9;:36::i;:::-;30839:121;30848:6;30856:12;:10;:12::i;:::-;30870:89;30908:6;30870:89;;;;;;;;;;;;;;;;;:11;:19;30882:6;30870:19;;;;;;;;;;;;;;;:33;30890:12;:10;:12::i;:::-;30870:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30839:8;:121::i;:::-;30982:4;30975:11;;30669:329;;;;;:::o;32840:269::-;32906:7;32949;;32938;:18;;32930:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33018:19;33041:10;:8;:10::i;:::-;33018:33;;33073:24;33085:11;33073:7;:11;;:24;;;;:::i;:::-;33066:31;;;32840:269;;;:::o;29690:91::-;29731:5;29760:9;;;;;;;;;;;29753:16;;29690:91;:::o;31010:230::-;31098:4;31119:83;31128:12;:10;:12::i;:::-;31142:7;31151:50;31190:10;31151:11;:25;31163:12;:10;:12::i;:::-;31151:25;;;;;;;;;;;;;;;:34;31177:7;31151:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;31119:8;:83::i;:::-;31224:4;31217:11;;31010:230;;;;:::o;31939:405::-;31995:14;32012:12;:10;:12::i;:::-;31995:29;;32048:11;:19;32060:6;32048:19;;;;;;;;;;;;;;;;;;;;;;;;;32047:20;32039:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32132:15;32156:19;32167:7;32156:10;:19::i;:::-;32131:44;;;;;;;32208:28;32228:7;32208;:15;32216:6;32208:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32190:7;:15;32198:6;32190:15;;;;;;;;;;;;;;;:46;;;;32261:20;32273:7;32261;;:11;;:20;;;;:::i;:::-;32251:7;:30;;;;32309:23;32324:7;32309:10;;:14;;:23;;;;:::i;:::-;32296:10;:36;;;;31939:405;;;:::o;32356:472::-;32446:7;32489;;32478;:18;;32470:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32552:17;32547:270;;32591:15;32615:19;32626:7;32615:10;:19::i;:::-;32590:44;;;;;;;32660:7;32653:14;;;;;32547:270;32710:23;32741:19;32752:7;32741:10;:19::i;:::-;32708:52;;;;;;;32786:15;32779:22;;;32356:472;;;;;:::o;28126:38::-;;;:::o;38133:168::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38191:23:::1;38217:24;38235:4;38217:9;:24::i;:::-;38191:50;;38256:33;38273:15;38256:16;:33::i;:::-;16177:1;38133:168::o:0;34581:131::-;34645:4;34673:18;:27;34692:7;34673:27;;;;;;;;;;;;;;;;;;;;;;;;;34666:34;;34581:131;;;:::o;45068:181::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45158:1:::1;45148:6;:11;;:27;;;;;45173:2;45163:6;:12;;45148:27;45140:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45231:6;45221:7;:16;;;;45068:181:::0;:::o;28207:30::-;;;;;;;;;;;;;:::o;29908:210::-;29974:7;30002:11;:20;30014:7;30002:20;;;;;;;;;;;;;;;;;;;;;;;;;29998:49;;;30031:7;:16;30039:7;30031:16;;;;;;;;;;;;;;;;30024:23;;;;29998:49;30069:37;30089:7;:16;30097:7;30089:16;;;;;;;;;;;;;;;;30069:19;:37::i;:::-;30062:44;;29908:210;;;;:::o;16567:160::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16678:1:::1;16641:40;;16662:6;::::0;::::1;;;;;;;;16641:40;;;;;;;;;;;;16713:1;16696:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16567:160::o:0;27962:89::-;;;;;;;;;;;;;:::o;15865:87::-;15903:7;15934:6;;;;;;;;;;;15927:13;;15865:87;:::o;29583:95::-;29622:13;29659:7;29652:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29583:95;:::o;31252:281::-;31345:4;31366:129;31375:12;:10;:12::i;:::-;31389:7;31398:96;31437:15;31398:96;;;;;;;;;;;;;;;;;:11;:25;31410:12;:10;:12::i;:::-;31398:25;;;;;;;;;;;;;;;:34;31424:7;31398:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31366:8;:129::i;:::-;31517:4;31510:11;;31252:281;;;;:::o;17674:313::-;17748:10;17730:28;;:14;;;;;;;;;;;:28;;;17722:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17827:9;;17821:3;:15;17813:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17922:14;;;;;;;;;;;17893:44;;17914:6;;;;;;;;;;17893:44;;;;;;;;;;;;17961:14;;;;;;;;;;;17952:6;;:23;;;;;;;;;;;;;;;;;;17674:313::o;30130:179::-;30208:4;30229:42;30239:12;:10;:12::i;:::-;30253:9;30264:6;30229:9;:42::i;:::-;30293:4;30286:11;;30130:179;;;;:::o;31675:145::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31800:8:::1;31770:18;:27;31789:7;31770:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31675:145:::0;;:::o;17171:97::-;17216:7;17247:9;;17240:16;;17171:97;:::o;31545:118::-;31603:4;31631:11;:20;31643:7;31631:20;;;;;;;;;;;;;;;;;;;;;;;;;31624:27;;31545:118;;;:::o;17352:234::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17437:6:::1;::::0;::::1;;;;;;;;17420:14;;:23;;;;;;;;;;;;;;;;;;17475:1;17458:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17510:4;17504:3;:10;17492:9;:22;;;;17571:1;17534:40;;17555:6;::::0;::::1;;;;;;;;17534:40;;;;;;;;;;;;17352:234:::0;:::o;30321:151::-;30402:7;30433:11;:18;30445:5;30433:18;;;;;;;;;;;;;;;:27;30452:7;30433:27;;;;;;;;;;;;;;;;30426:34;;30321:151;;;;:::o;38504:106::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38591:7:::1;38577:11;;:21;;;;;;;;;;;;;;;;;;38504:106:::0;:::o;33121:475::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33217:42:::1;33206:53;;:7;:53;;;;33198:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33322:11;:20;33334:7;33322:20;;;;;;;;;;;;;;;;;;;;;;;;;33321:21;33313:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33411:1;33392:7;:16;33400:7;33392:16;;;;;;;;;;;;;;;;:20;33389:116;;;33452:37;33472:7;:16;33480:7;33472:16;;;;;;;;;;;;;;;;33452:19;:37::i;:::-;33433:7;:16;33441:7;33433:16;;;;;;;;;;;;;;;:56;;;;33389:116;33542:4;33519:11;:20;33531:7;33519:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33561:9;33576:7;33561:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33121:475:::0;:::o;16899:260::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17012:1:::1;16992:22;;:8;:22;;;;16984:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17106:8;17077:38;;17098:6;::::0;::::1;;;;;;;;17077:38;;;;;;;;;;;;17139:8;17130:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16899:260:::0;:::o;38321:171::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38379:26:::1;38408:21;38379:50;;38444:36;38461:18;38444:16;:36::i;:::-;16177:1;38321:171::o:0;44930:118::-;44976:15;45015:21;45008:28;;44930:118;:::o;33608:522::-;16113:12;:10;:12::i;:::-;16103:22;;:6;;;;;;;;;;:22;;;16095:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33693:11:::1;:20;33705:7;33693:20;;;;;;;;;;;;;;;;;;;;;;;;;33685:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33765:9;33760:359;33784:9;:16;;;;33780:1;:20;33760:359;;;33846:7;33830:23;;:9;33840:1;33830:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33826:278;;;33893:9;33922:1;33903:9;:16;;;;:20;33893:31;;;;;;;;;;;;;;;;;;;;;;;;;33878:9;33888:1;33878:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33966:1;33947:7;:16;33955:7;33947:16;;;;;;;;;;;;;;;:20;;;;34013:5;33990:11;:20;34002:7;33990:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34041:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34079:5;;33826:278;33802:3;;;;;;;33760:359;;;;33608:522:::0;:::o;322:114::-;375:15;414:10;407:17;;322:114;:::o;34724:357::-;34838:1;34821:19;;:5;:19;;;;34813:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34923:1;34904:21;;:7;:21;;;;34896:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35011:6;34981:11;:18;34993:5;34981:18;;;;;;;;;;;;;;;:27;35000:7;34981:27;;;;;;;;;;;;;;;:36;;;;35053:7;35037:32;;35046:5;35037:32;;;35062:6;35037:32;;;;;;;;;;;;;;;;;;34724:357;;;:::o;35093:2067::-;35212:1;35194:20;;:6;:20;;;;35186:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35300:1;35279:23;;:9;:23;;;;35271:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35374:1;35365:6;:10;35357:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35463:7;:5;:7::i;:::-;35453:17;;:6;:17;;;;:41;;;;;35487:7;:5;:7::i;:::-;35474:20;;:9;:20;;;;35453:41;35450:138;;;35531:12;;35521:6;:22;;35513:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35450:138;35874:28;35905:24;35923:4;35905:9;:24::i;:::-;35874:55;;35985:12;;35961:20;:36;35958:124;;36054:12;;36031:35;;35958:124;36110:24;36161:32;;36137:20;:56;;36110:83;;36213:6;;;;;;;;;;;36212:7;:22;;;;;36223:11;;;;;;;;;;;36212:22;:45;;;;;36238:19;36212:45;:72;;;;;36271:13;36261:23;;:6;:23;;;;36212:72;36208:458;;;36398:38;36415:20;36398:16;:38::i;:::-;36473:26;36502:21;36473:50;;36566:1;36545:18;:22;36542:109;;;36592:39;36609:21;36592:16;:39::i;:::-;36542:109;36208:458;;36759:12;36774:4;36759:19;;36898:18;:26;36917:6;36898:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;36928:18;:29;36947:9;36928:29;;;;;;;;;;;;;;;;;;;;;;;;;36898:59;36895:113;;;36987:5;36977:15;;36895:113;37101:47;37116:6;37123:9;37133:6;37140:7;37101:14;:47::i;:::-;35093:2067;;;;;;:::o;4849:208::-;4935:7;4972:1;4967;:6;;4975:12;4959:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5003:9;5019:1;5015;:5;5003:17;;5044:1;5037:8;;;4849:208;;;;;:::o;43902:175::-;43943:7;43968:15;43985;44004:19;:17;:19::i;:::-;43967:56;;;;44045:20;44057:7;44045;:11;;:20;;;;:::i;:::-;44038:27;;;;43902:175;:::o;6379:140::-;6437:7;6468:39;6472:1;6475;6468:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6461:46;;6379:140;;;;:::o;3852:197::-;3910:7;3934:9;3950:1;3946;:5;3934:17;;3979:1;3974;:6;;3966:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4036:1;4029:8;;;3852:197;;;;:::o;42636:490::-;42695:7;42704;42713;42722;42731;42740;42765:23;42790:12;42804:16;42824:42;42836:7;42845;;42854:11;;42824;:42::i;:::-;42764:102;;;;;;42881:19;42904:10;:8;:10::i;:::-;42881:33;;42930:15;42947:23;42972:12;42988:39;43000:7;43009:4;43015:11;42988;:39::i;:::-;42929:98;;;;;;43050:7;43059:15;43076:4;43082:15;43099:4;43105:8;43042:72;;;;;;;;;;;;;;;;;;;42636:490;;;;;;;:::o;4367:144::-;4425:7;4456:43;4460:1;4463;4456:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4449:50;;4367:144;;;;:::o;37172:656::-;28628:4;28619:6;;:13;;;;;;;;;;;;;;;;;;37317:21:::1;37355:1;37341:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37317:40;;37390:4;37372;37377:1;37372:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;37420:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;37410:4;37415:1;37410:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;37459:62;37476:4;37491:15;37509:11;37459:8;:62::i;:::-;37568:15;:66;;;37653:11;37683:1;37731:4;37762;37786:15;37568:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;28647:1;28672:5:::0;28663:6;;:14;;;;;;;;;;;;;;;;;;37172:656;:::o;37848:115::-;37913:21;;;;;;;;;;;:30;;:38;37944:6;37913:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37848:115;:::o;38630:883::-;38746:7;38742:44;;38772:14;:12;:14::i;:::-;38742:44;38807:11;:19;38819:6;38807:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;38831:11;:22;38843:9;38831:22;;;;;;;;;;;;;;;;;;;;;;;;;38830:23;38807:46;38803:637;;;38874:48;38896:6;38904:9;38915:6;38874:21;:48::i;:::-;38803:637;;;38949:11;:19;38961:6;38949:19;;;;;;;;;;;;;;;;;;;;;;;;;38948:20;:46;;;;;38972:11;:22;38984:9;38972:22;;;;;;;;;;;;;;;;;;;;;;;;;38948:46;38944:496;;;39015:46;39035:6;39043:9;39054:6;39015:19;:46::i;:::-;38944:496;;;39088:11;:19;39100:6;39088:19;;;;;;;;;;;;;;;;;;;;;;;;;39087:20;:47;;;;;39112:11;:22;39124:9;39112:22;;;;;;;;;;;;;;;;;;;;;;;;;39111:23;39087:47;39083:357;;;39155:44;39173:6;39181:9;39192:6;39155:17;:44::i;:::-;39083:357;;;39225:11;:19;39237:6;39225:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39248:11;:22;39260:9;39248:22;;;;;;;;;;;;;;;;;;;;;;;;;39225:45;39221:219;;;39291:48;39313:6;39321:9;39332:6;39291:21;:48::i;:::-;39221:219;;;39380:44;39398:6;39406:9;39417:6;39380:17;:44::i;:::-;39221:219;39083:357;38944:496;38803:637;39460:7;39456:45;;39486:15;:13;:15::i;:::-;39456:45;38630:883;;;;:::o;44089:601::-;44139:7;44148;44172:15;44190:7;;44172:25;;44212:15;44230:7;;44212:25;;44263:9;44258:305;44282:9;:16;;;;44278:1;:20;44258:305;;;44352:7;44328;:21;44336:9;44346:1;44336:12;;;;;;;;;;;;;;;;;;;;;;;;;44328:21;;;;;;;;;;;;;;;;:31;:66;;;;44387:7;44363;:21;44371:9;44381:1;44371:12;;;;;;;;;;;;;;;;;;;;;;;;;44363:21;;;;;;;;;;;;;;;;:31;44328:66;44324:97;;;44404:7;;44413;;44396:25;;;;;;;;;44324:97;44450:34;44462:7;:21;44470:9;44480:1;44470:12;;;;;;;;;;;;;;;;;;;;;;;;;44462:21;;;;;;;;;;;;;;;;44450:7;:11;;:34;;;;:::i;:::-;44440:44;;44513:34;44525:7;:21;44533:9;44543:1;44533:12;;;;;;;;;;;;;;;;;;;;;;;;;44525:21;;;;;;;;;;;;;;;;44513:7;:11;;:34;;;;:::i;:::-;44503:44;;44300:3;;;;;;;44258:305;;;;44591:20;44603:7;;44591;;:11;;:20;;;;:::i;:::-;44581:7;:30;44577:61;;;44621:7;;44630;;44613:25;;;;;;;;44577:61;44661:7;44670;44653:25;;;;;;44089:601;;;:::o;7056:298::-;7142:7;7178:1;7174;:5;7181:12;7166:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7209:9;7225:1;7221;:5;;;;;;7209:17;;7341:1;7334:8;;;7056:298;;;;;:::o;43138:386::-;43234:7;43243;43252;43276:12;43291:28;43315:3;43291:19;43303:6;43291:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43276:43;;43334:16;43353:32;43381:3;43353:23;43365:10;43353:7;:11;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;43334:51;;43400:23;43426:31;43448:8;43426:17;43438:4;43426:7;:11;;:17;;;;:::i;:::-;:21;;:31;;;;:::i;:::-;43400:57;;43480:15;43497:4;43503:8;43472:40;;;;;;;;;43138:386;;;;;;;:::o;43536:354::-;43631:7;43640;43649;43673:15;43691:24;43703:11;43691:7;:11;;:24;;;;:::i;:::-;43673:42;;43730:12;43745:21;43754:11;43745:4;:8;;:21;;;;:::i;:::-;43730:36;;43781:23;43807:17;43819:4;43807:7;:11;;:17;;;;:::i;:::-;43781:43;;43847:7;43856:15;43873:4;43839:39;;;;;;;;;43536:354;;;;;;;:::o;34142:274::-;34203:1;34192:7;;:12;:32;;;;;34223:1;34208:11;;:16;34192:32;34189:44;;;34226:7;;34189:44;34279:7;;34261:15;:25;;;;34323:11;;34301:19;:33;;;;34373:1;34363:7;:11;;;;34403:1;34389:11;:15;;;;34142:274;:::o;40691:593::-;40798:15;40815:23;40840:12;40854:23;40879:12;40893:16;40913:19;40924:7;40913:10;:19::i;:::-;40797:135;;;;;;;;;;;;40965:28;40985:7;40965;:15;40973:6;40965:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40947:7;:15;40955:6;40947:15;;;;;;;;;;;;;;;:46;;;;41026:28;41046:7;41026;:15;41034:6;41026:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41008:7;:15;41016:6;41008:15;;;;;;;;;;;;;;;:46;;;;41090:39;41113:15;41090:7;:18;41098:9;41090:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41069:7;:18;41077:9;41069:18;;;;;;;;;;;;;;;:60;;;;41145:22;41158:8;41145:12;:22::i;:::-;41185:23;41197:4;41203;41185:11;:23::i;:::-;41245:9;41228:44;;41237:6;41228:44;;;41256:15;41228:44;;;;;;;;;;;;;;;;;;40691:593;;;;;;;;;:::o;40063:616::-;40168:15;40185:23;40210:12;40224:23;40249:12;40263:16;40283:19;40294:7;40283:10;:19::i;:::-;40167:135;;;;;;;;;;;;40335:28;40355:7;40335;:15;40343:6;40335:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40317:7;:15;40325:6;40317:15;;;;;;;;;;;;;;;:46;;;;40399:39;40422:15;40399:7;:18;40407:9;40399:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40378:7;:18;40386:9;40378:18;;;;;;;;;;;;;;;:60;;;;40474:39;40497:15;40474:7;:18;40482:9;40474:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40453:7;:18;40461:9;40453:18;;;;;;;;;;;;;;;:60;;;;40532:22;40545:8;40532:12;:22::i;:::-;40580:23;40592:4;40598;40580:11;:23::i;:::-;40640:9;40623:44;;40632:6;40623:44;;;40651:15;40623:44;;;;;;;;;;;;;;;;;;40063:616;;;;;;;;;:::o;39525:526::-;39628:15;39645:23;39670:12;39684:23;39709:12;39723:16;39743:19;39754:7;39743:10;:19::i;:::-;39627:135;;;;;;;;;;;;39795:28;39815:7;39795;:15;39803:6;39795:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39777:7;:15;39785:6;39777:15;;;;;;;;;;;;;;;:46;;;;39859:39;39882:15;39859:7;:18;39867:9;39859:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;39838:7;:18;39846:9;39838:18;;;;;;;;;;;;;;;:60;;;;39914:22;39927:8;39914:12;:22::i;:::-;39952:23;39964:4;39970;39952:11;:23::i;:::-;40012:9;39995:44;;40004:6;39995:44;;;40023:15;39995:44;;;;;;;;;;;;;;;;;;39525:526;;;;;;;;;:::o;41296:676::-;41403:15;41420:23;41445:12;41459:23;41484:12;41498:16;41518:19;41529:7;41518:10;:19::i;:::-;41402:135;;;;;;;;;;;;41570:28;41590:7;41570;:15;41578:6;41570:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41552:7;:15;41560:6;41552:15;;;;;;;;;;;;;;;:46;;;;41631:28;41651:7;41631;:15;41639:6;41631:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41613:7;:15;41621:6;41613:15;;;;;;;;;;;;;;;:46;;;;41695:39;41718:15;41695:7;:18;41703:9;41695:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41674:7;:18;41682:9;41674:18;;;;;;;;;;;;;;;:60;;;;41770:39;41793:15;41770:7;:18;41778:9;41770:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41749:7;:18;41757:9;41749:18;;;;;;;;;;;;;;;:60;;;;41827:22;41840:8;41827:12;:22::i;:::-;41873:23;41885:4;41891;41873:11;:23::i;:::-;41933:9;41916:44;;41925:6;41916:44;;;41944:15;41916:44;;;;;;;;;;;;;;;;;;41296:676;;;;;;;;;:::o;34432:133::-;34490:15;;34480:7;:25;;;;34534:19;;34520:11;:33;;;;34432:133::o;5351:511::-;5409:7;5675:1;5670;:6;5666:55;;;5704:1;5697:8;;;;5666:55;5737:9;5753:1;5749;:5;5737:17;;5786:1;5781;5777;:5;;;;;;:10;5769:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5849:1;5842:8;;;5351:511;;;;;:::o;41984:367::-;42047:19;42070:10;:8;:10::i;:::-;42047:33;;42095:16;42114:25;42127:11;42114:8;:12;;:25;;;;:::i;:::-;42095:44;;42179:36;42206:8;42179:7;:22;42195:4;42179:22;;;;;;;;;;;;;;;;:26;;:36;;;;:::i;:::-;42154:7;:22;42170:4;42154:22;;;;;;;;;;;;;;;:61;;;;42233:11;:26;42253:4;42233:26;;;;;;;;;;;;;;;;;;;;;;;;;42230:109;;;42303:36;42330:8;42303:7;:22;42319:4;42303:22;;;;;;;;;;;;;;;;:26;;:36;;;;:::i;:::-;42278:7;:22;42294:4;42278:22;;;;;;;;;;;;;;;:61;;;;42230:109;41984:367;;;:::o;42363:159::-;42445:17;42457:4;42445:7;;:11;;:17;;;;:::i;:::-;42435:7;:27;;;;42490:20;42505:4;42490:10;;:14;;:20;;;;:::i;:::-;42477:10;:33;;;;42363:159;;:::o

Swarm Source

ipfs://9d98b88d23eb12410b49b6475debf0dc5920d5f7655892c796894f5c7aa96802
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.