ETH Price: $3,341.59 (-1.37%)
Gas: 20 Gwei

Contract

0x5597f2C6334eA76f4bB32E0DD20A30c2F205d655
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve193681992024-03-05 9:54:47113 days ago1709632487IN
0x5597f2C6...2F205d655
0 ETH0.001445659.38721302
Transfer193643302024-03-04 20:56:23113 days ago1709585783IN
0x5597f2C6...2F205d655
0 ETH0.01296437102.358116
Transfer175476172023-06-24 6:30:47368 days ago1687588247IN
0x5597f2C6...2F205d655
0 ETH0.0015720912.41342549
Transfer173602252023-05-28 21:34:47394 days ago1685309687IN
0x5597f2C6...2F205d655
0 ETH0.0034626527.3388395
Approve172295472023-05-10 10:55:47413 days ago1683716147IN
0x5597f2C6...2F205d655
0 ETH0.0014045757.70155837
Approve170187572023-04-10 15:45:23443 days ago1681141523IN
0x5597f2C6...2F205d655
0 ETH0.0007034928.90043001
Approve168254002023-03-14 9:49:47470 days ago1678787387IN
0x5597f2C6...2F205d655
0 ETH0.0004409118.1131845
Approve167842752023-03-08 14:57:35476 days ago1678287455IN
0x5597f2C6...2F205d655
0 ETH0.0007522530.90360855
Approve165804442023-02-08 0:21:23504 days ago1675815683IN
0x5597f2C6...2F205d655
0 ETH0.0008632335.46260395
Transfer162148532022-12-18 23:26:35555 days ago1671405995IN
0x5597f2C6...2F205d655
0 ETH0.0010074510
Transfer From159156532022-11-07 4:07:35597 days ago1667794055IN
0x5597f2C6...2F205d655
0 ETH0.0019254614.30498741
Approve159156512022-11-07 4:07:11597 days ago1667794031IN
0x5597f2C6...2F205d655
0 ETH0.0005590111.99558247
Approve158788532022-11-02 0:47:35602 days ago1667350055IN
0x5597f2C6...2F205d655
0 ETH0.0003323413.66653333
Transfer From158788432022-11-02 0:45:35602 days ago1667349935IN
0x5597f2C6...2F205d655
0 ETH0.0017323712.87042959
Approve158788412022-11-02 0:45:11602 days ago1667349911IN
0x5597f2C6...2F205d655
0 ETH0.0005713412.26019877
Transfer From157756962022-10-18 14:50:11617 days ago1666104611IN
0x5597f2C6...2F205d655
0 ETH0.0062402646.36122528
Approve157756942022-10-18 14:49:47617 days ago1666104587IN
0x5597f2C6...2F205d655
0 ETH0.0019274741.3390877
Approve152068472022-07-24 18:15:46702 days ago1658686546IN
0x5597f2C6...2F205d655
0 ETH0.0005736212.3027676
Transfer141233962022-02-02 0:30:44875 days ago1643761844IN
0x5597f2C6...2F205d655
0 ETH0.02367428186.91650272
Transfer139828682022-01-11 7:31:08897 days ago1641886268IN
0x5597f2C6...2F205d655
0 ETH0.01317108104
Approve139280452022-01-02 19:58:32905 days ago1641153512IN
0x5597f2C6...2F205d655
0 ETH0.00391244160.7279924
Approve138841762021-12-27 0:54:29912 days ago1640566469IN
0x5597f2C6...2F205d655
0 ETH0.0012053449.51702129
Approve138312502021-12-18 20:19:12920 days ago1639858752IN
0x5597f2C6...2F205d655
0 ETH0.00426279159.5
Approve138312502021-12-18 20:19:12920 days ago1639858752IN
0x5597f2C6...2F205d655
0 ETH0.0045227297
Approve137648622021-12-08 12:42:36931 days ago1638967356IN
0x5597f2C6...2F205d655
0 ETH0.0011759444
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
125279532021-05-29 7:39:121124 days ago1622273952
0x5597f2C6...2F205d655
0.005 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SOCIETY_OF_GALACTIC_EXPLORATION

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity ^0.6.12;

// SPDX-License-Identifier: Unlicensed

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 SOCIETY_OF_GALACTIC_EXPLORATION 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 = 100000000000000 * 10**9;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'SOCIETY OF GALACTIC EXPLORATION';
        string private _symbol = 'SOGE';
        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 = 2; 
        uint256 private _charityFee = 2;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousCharityFee = _charityFee;

        address payable public _charityWalletAddress;

        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 = 2 * 10**6 * 10**9;

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

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

        constructor (address payable charityWalletAddress) public {
            _charityWalletAddress = charityWalletAddress;
            _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 _setCharityFee(uint256 charityFee) external onlyOwner() {
            require(charityFee >= 1 && charityFee <= 5, 'charityFee should be in 1 - 5');
            _charityFee = charityFee;
        }
        
        function _setCharityWallet(address payable charityWalletAddress) external onlyOwner() {
            _charityWalletAddress = charityWalletAddress;
        }
        
        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            require(maxTxAmount >= 100000000000000e9 , 'maxTxAmount should be greater than 100000000000000e9');
            _maxTxAmount = maxTxAmount;
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"charityFee","type":"uint256"}],"name":"_setCharityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"name":"_setCharityWallet","outputs":[],"stateMutability":"nonpayable","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"}]

60c060405269152d02c7e14af6800000600955600954600019816200002057fe5b0660001903600a556040518060400160405280601f81526020017f534f4349455459204f462047414c4143544943204558504c4f524154494f4e00815250600c9080519060200190620000759291906200068f565b506040518060400160405280600481526020017f534f474500000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c39291906200068f565b506009600e60006101000a81548160ff021916908360ff1602179055506002600f556002601055600f546011556010546012556000601360146101000a81548160ff0219169083151502179055506001601360156101000a81548160ff02191690831515021790555069152d02c7e14af680000060145566071afd498d00006015553480156200015257600080fd5b50604051620057c6380380620057c6833981810160405260208110156200017857600080fd5b810190808051906020019092919050505060006200019b6200065e60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5460036000620002916200065e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032f57600080fd5b505afa15801562000344573d6000803e3d6000fd5b505050506040513d60208110156200035b57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003cf57600080fd5b505afa158015620003e4573d6000803e3d6000fd5b505050506040513d6020811015620003fb57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200047657600080fd5b505af11580156200048b573d6000803e3d6000fd5b505050506040513d6020811015620004a257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620005366200066660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005ef6200065e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3505062000735565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006d257805160ff191683800117855562000703565b8280016001018555821562000703579182015b8281111562000702578251825591602001919060010190620006e5565b5b50905062000712919062000716565b5090565b5b808211156200073157600081600090555060010162000717565b5090565b60805160601c60a05160601c61505362000773600039806114165280613349525080610e4452806137a4528061389052806138b752506150536000f3fe6080604052600436106102295760003560e01c806376d4ab9911610123578063cba0e996116100ab578063f2cc0c181161006f578063f2cc0c1814610c43578063f2fde38b14610c94578063f429389014610ce5578063f815a84214610cfc578063f84354f114610d2757610230565b8063cba0e99614610a8e578063d047e4b714610af5578063dd46706414610b46578063dd62ed3e14610b81578063e01af92c14610c0657610230565b8063a457c2d7116100f2578063a457c2d71461090d578063a69df4b51461097e578063a9059cbb14610995578063af9549e014610a06578063b6c5232414610a6357610230565b806376d4ab99146107c05780638da5cb5b1461080157806395d89b4114610842578063a24a8d0f146108d257610230565b806339509351116101b15780635342acb4116101755780635342acb4146106755780635880b873146106dc5780636ddd17131461071757806370a0823114610744578063715018a6146107a957610230565b806339509351146105165780633bd5d173146105875780634549b039146105c257806349bd5a5e1461061d57806351bc3c851461065e57610230565b806318160ddd116101f857806318160ddd146103a25780631bbae6e0146103cd57806323b872dd146104085780632d83811914610499578063313ce567146104e857610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610d78565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e1a565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610e38565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610e42565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610e66565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610e70565b005b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa5565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b810190808035906020019092919050505061107e565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506104fd611102565b604051808260ff16815260200191505060405180910390f35b34801561052257600080fd5b5061056f6004803603604081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611119565b60405180821515815260200191505060405180910390f35b34801561059357600080fd5b506105c0600480360360208110156105aa57600080fd5b81019080803590602001909291905050506111cc565b005b3480156105ce57600080fd5b50610607600480360360408110156105e557600080fd5b810190808035906020019092919080351515906020019092919050505061135d565b6040518082815260200191505060405180910390f35b34801561062957600080fd5b50610632611414565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561066a57600080fd5b50610673611438565b005b34801561068157600080fd5b506106c46004803603602081101561069857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611519565b60405180821515815260200191505060405180910390f35b3480156106e857600080fd5b50610715600480360360208110156106ff57600080fd5b810190808035906020019092919050505061156f565b005b34801561072357600080fd5b5061072c6116c5565b60405180821515815260200191505060405180910390f35b34801561075057600080fd5b506107936004803603602081101561076757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d8565b6040518082815260200191505060405180910390f35b3480156107b557600080fd5b506107be6117c3565b005b3480156107cc57600080fd5b506107d5611949565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080d57600080fd5b5061081661196f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084e57600080fd5b50610857611998565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561089757808201518184015260208101905061087c565b50505050905090810190601f1680156108c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108de57600080fd5b5061090b600480360360208110156108f557600080fd5b8101908080359060200190929190505050611a3a565b005b34801561091957600080fd5b506109666004803603604081101561093057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b90565b60405180821515815260200191505060405180910390f35b34801561098a57600080fd5b50610993611c5d565b005b3480156109a157600080fd5b506109ee600480360360408110156109b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e7a565b60405180821515815260200191505060405180910390f35b348015610a1257600080fd5b50610a6160048036036040811015610a2957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611e98565b005b348015610a6f57600080fd5b50610a78611fbb565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fc5565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b4460048036036020811015610b1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061201b565b005b348015610b5257600080fd5b50610b7f60048036036020811015610b6957600080fd5b8101908080359060200190929190505050612127565b005b348015610b8d57600080fd5b50610bf060048036036040811015610ba457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612318565b6040518082815260200191505060405180910390f35b348015610c1257600080fd5b50610c4160048036036020811015610c2957600080fd5b8101908080351515906020019092919050505061239f565b005b348015610c4f57600080fd5b50610c9260048036036020811015610c6657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612484565b005b348015610ca057600080fd5b50610ce360048036036020811015610cb757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612837565b005b348015610cf157600080fd5b50610cfa612a42565b005b348015610d0857600080fd5b50610d11612b1b565b6040518082815260200191505060405180910390f35b348015610d3357600080fd5b50610d7660048036036020811015610d4a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b23565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e105780601f10610de557610100808354040283529160200191610e10565b820191906000526020600020905b815481529060010190602001808311610df357829003601f168201915b5050505050905090565b6000610e2e610e27612ead565b8484612eb5565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b610e78612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b69152d02c7e14af6800000811015610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614e716034913960400191505060405180910390fd5b8060148190555050565b6000610fb28484846130ac565b61107384610fbe612ead565b61106e85604051806060016040528060288152602001614eee60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611024612ead565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134859092919063ffffffff16565b612eb5565b600190509392505050565b6000600a548211156110db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614dff602a913960400191505060405180910390fd5b60006110e5613545565b90506110fa818461357090919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b60006111c2611126612ead565b846111bd8560056000611137612ead565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b612eb5565b6001905092915050565b60006111d6612ead565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614faa602c913960400191505060405180910390fd5b600061128683613642565b505050505090506112df81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061133781600a546136a990919063ffffffff16565b600a8190555061135283600b546135ba90919063ffffffff16565b600b81905550505050565b60006009548311156113d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816113f75760006113e784613642565b505050505090508091505061140e565b600061140284613642565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611440612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061150b306116d8565b9050611516816136f3565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611577612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156116495750600a8111155b6116bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20313000000000000081525060200191505060405180910390fd5b80600f8190555050565b601360159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561177357600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506117be565b6117bb600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107e565b90505b919050565b6117cb612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a305780601f10611a0557610100808354040283529160200191611a30565b820191906000526020600020905b815481529060010190602001808311611a1357829003601f168201915b5050505050905090565b611a42612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611b14575060058111155b611b86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f636861726974794665652073686f756c6420626520696e2031202d203500000081525060200191505060405180910390fd5b8060108190555050565b6000611c53611b9d612ead565b84611c4e85604051806060016040528060258152602001614ff96025913960056000611bc7612ead565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134859092919063ffffffff16565b612eb5565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614fd66023913960400191505060405180910390fd5b6002544211611d7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611e8e611e87612ead565b84846130ac565b6001905092915050565b611ea0612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b612023612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61212f612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6123a7612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612467576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360156101000a81548160ff02191690831515021790555050565b61248c612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461254c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f886022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561277957612735600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107e565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61283f612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612985576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614e296026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612a4a612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612b18816139d7565b50565b600047905090565b612b2b612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612beb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612caa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015612ea9578173ffffffffffffffffffffffffffffffffffffffff1660088281548110612cde57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e9c57600860016008805490500381548110612d3a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110612d7257fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008805480612e6257fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612ea9565b8080600101915050612cad565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614f646024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e4f6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614f3f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ddc6023913960400191505060405180910390fd5b60008111613211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f166029913960400191505060405180910390fd5b61321961196f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613287575061325761196f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156132e8576014548111156132e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614ea56028913960400191505060405180910390fd5b5b60006132f3306116d8565b905060145481106133045760145490505b60006015548210159050601360149054906101000a900460ff161580156133375750601360159054906101000a900460ff165b80156133405750805b801561339857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156133c0576133a6826136f3565b600047905060008111156133be576133bd476139d7565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134675750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561347157600090505b61347d86868684613a43565b505050505050565b6000838311158290613532576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134f75780820151818401526020810190506134dc565b50505050905090810190601f1680156135245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613552613d54565b91509150613569818361357090919063ffffffff16565b9250505090565b60006135b283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fe5565b905092915050565b600080828401905083811015613638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061365f8a600f546010546140ab565b925092509250600061366f613545565b905060008060006136818e8786614141565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b60006136eb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613485565b905092915050565b6001601360146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff8111801561372857600080fd5b506040519080825280602002602001820160405280156137575781602001602082028036833780820191505090505b509050308160008151811061376857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561380857600080fd5b505afa15801561381c573d6000803e3d6000fd5b505050506040513d602081101561383257600080fd5b81019080805190602001909291905050508160018151811061385057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138b5307f000000000000000000000000000000000000000000000000000000000000000084612eb5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561397757808201518184015260208101905061395c565b505050509050019650505050505050600060405180830381600087803b1580156139a057600080fd5b505af11580156139b4573d6000803e3d6000fd5b50505050506000601360146101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613a3f573d6000803e3d6000fd5b5050565b80613a5157613a5061419f565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613af45750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613b0957613b048484846141e2565b613d40565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613bac5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613bc157613bbc848484614442565b613d3f565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613c655750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613c7a57613c758484846146a2565b613d3e565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d1c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d3157613d2c84848461486d565b613d3d565b613d3c8484846146a2565b5b5b5b5b80613d4e57613d4d614b62565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613fa857826003600060088481548110613d8757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613e6e5750816004600060088481548110613e0657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613e8557600a5460095494509450505050613fe1565b613f0e6003600060088481548110613e9957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846136a990919063ffffffff16565b9250613f996004600060088481548110613f2457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836136a990919063ffffffff16565b91508080600101915050613d68565b50613fc0600954600a5461357090919063ffffffff16565b821015613fd857600a54600954935093505050613fe1565b81819350935050505b9091565b60008083118290614091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561405657808201518184015260208101905061403b565b50505050905090810190601f1680156140835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161409d57fe5b049050809150509392505050565b6000806000806140d760646140c9888a614b7690919063ffffffff16565b61357090919063ffffffff16565b9050600061410160646140f3888b614b7690919063ffffffff16565b61357090919063ffffffff16565b9050600061412a8261411c858c6136a990919063ffffffff16565b6136a990919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061415a8588614b7690919063ffffffff16565b905060006141718688614b7690919063ffffffff16565b9050600061418882846136a990919063ffffffff16565b905082818395509550955050505093509350939050565b6000600f541480156141b357506000601054145b156141bd576141e0565b600f546011819055506010546012819055506000600f8190555060006010819055505b565b6000806000806000806141f487613642565b95509550955095509550955061425287600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142e786600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061437c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143c881614bfc565b6143d28483614da1565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061445487613642565b9550955095509550955095506144b286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061454783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145dc85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061462881614bfc565b6146328483614da1565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806146b487613642565b95509550955095509550955061471286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147a785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147f381614bfc565b6147fd8483614da1565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061487f87613642565b9550955095509550955095506148dd87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061497286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a0783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a9c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ae881614bfc565b614af28483614da1565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154600f81905550601254601081905550565b600080831415614b895760009050614bf6565b6000828402905082848281614b9a57fe5b0414614bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614ecd6021913960400191505060405180910390fd5b809150505b92915050565b6000614c06613545565b90506000614c1d8284614b7690919063ffffffff16565b9050614c7181600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614d9c57614d5883600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614db682600a546136a990919063ffffffff16565b600a81905550614dd181600b546135ba90919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e2031303030303030303030303030303065395472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207e59770ae827c31ec95f98d0be5c72497ded6db862b198d3145b42aead3bc4a864736f6c634300060c0033000000000000000000000000178d98089b1d0ba0edaa2969bb288097a5e437fd

Deployed Bytecode

0x6080604052600436106102295760003560e01c806376d4ab9911610123578063cba0e996116100ab578063f2cc0c181161006f578063f2cc0c1814610c43578063f2fde38b14610c94578063f429389014610ce5578063f815a84214610cfc578063f84354f114610d2757610230565b8063cba0e99614610a8e578063d047e4b714610af5578063dd46706414610b46578063dd62ed3e14610b81578063e01af92c14610c0657610230565b8063a457c2d7116100f2578063a457c2d71461090d578063a69df4b51461097e578063a9059cbb14610995578063af9549e014610a06578063b6c5232414610a6357610230565b806376d4ab99146107c05780638da5cb5b1461080157806395d89b4114610842578063a24a8d0f146108d257610230565b806339509351116101b15780635342acb4116101755780635342acb4146106755780635880b873146106dc5780636ddd17131461071757806370a0823114610744578063715018a6146107a957610230565b806339509351146105165780633bd5d173146105875780634549b039146105c257806349bd5a5e1461061d57806351bc3c851461065e57610230565b806318160ddd116101f857806318160ddd146103a25780631bbae6e0146103cd57806323b872dd146104085780632d83811914610499578063313ce567146104e857610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610d78565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e1a565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610e38565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610e42565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610e66565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610e70565b005b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa5565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b810190808035906020019092919050505061107e565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506104fd611102565b604051808260ff16815260200191505060405180910390f35b34801561052257600080fd5b5061056f6004803603604081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611119565b60405180821515815260200191505060405180910390f35b34801561059357600080fd5b506105c0600480360360208110156105aa57600080fd5b81019080803590602001909291905050506111cc565b005b3480156105ce57600080fd5b50610607600480360360408110156105e557600080fd5b810190808035906020019092919080351515906020019092919050505061135d565b6040518082815260200191505060405180910390f35b34801561062957600080fd5b50610632611414565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561066a57600080fd5b50610673611438565b005b34801561068157600080fd5b506106c46004803603602081101561069857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611519565b60405180821515815260200191505060405180910390f35b3480156106e857600080fd5b50610715600480360360208110156106ff57600080fd5b810190808035906020019092919050505061156f565b005b34801561072357600080fd5b5061072c6116c5565b60405180821515815260200191505060405180910390f35b34801561075057600080fd5b506107936004803603602081101561076757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d8565b6040518082815260200191505060405180910390f35b3480156107b557600080fd5b506107be6117c3565b005b3480156107cc57600080fd5b506107d5611949565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080d57600080fd5b5061081661196f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084e57600080fd5b50610857611998565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561089757808201518184015260208101905061087c565b50505050905090810190601f1680156108c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108de57600080fd5b5061090b600480360360208110156108f557600080fd5b8101908080359060200190929190505050611a3a565b005b34801561091957600080fd5b506109666004803603604081101561093057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b90565b60405180821515815260200191505060405180910390f35b34801561098a57600080fd5b50610993611c5d565b005b3480156109a157600080fd5b506109ee600480360360408110156109b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e7a565b60405180821515815260200191505060405180910390f35b348015610a1257600080fd5b50610a6160048036036040811015610a2957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611e98565b005b348015610a6f57600080fd5b50610a78611fbb565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fc5565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b4460048036036020811015610b1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061201b565b005b348015610b5257600080fd5b50610b7f60048036036020811015610b6957600080fd5b8101908080359060200190929190505050612127565b005b348015610b8d57600080fd5b50610bf060048036036040811015610ba457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612318565b6040518082815260200191505060405180910390f35b348015610c1257600080fd5b50610c4160048036036020811015610c2957600080fd5b8101908080351515906020019092919050505061239f565b005b348015610c4f57600080fd5b50610c9260048036036020811015610c6657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612484565b005b348015610ca057600080fd5b50610ce360048036036020811015610cb757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612837565b005b348015610cf157600080fd5b50610cfa612a42565b005b348015610d0857600080fd5b50610d11612b1b565b6040518082815260200191505060405180910390f35b348015610d3357600080fd5b50610d7660048036036020811015610d4a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b23565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e105780601f10610de557610100808354040283529160200191610e10565b820191906000526020600020905b815481529060010190602001808311610df357829003601f168201915b5050505050905090565b6000610e2e610e27612ead565b8484612eb5565b6001905092915050565b6000600b54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600954905090565b610e78612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b69152d02c7e14af6800000811015610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614e716034913960400191505060405180910390fd5b8060148190555050565b6000610fb28484846130ac565b61107384610fbe612ead565b61106e85604051806060016040528060288152602001614eee60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611024612ead565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134859092919063ffffffff16565b612eb5565b600190509392505050565b6000600a548211156110db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614dff602a913960400191505060405180910390fd5b60006110e5613545565b90506110fa818461357090919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b60006111c2611126612ead565b846111bd8560056000611137612ead565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b612eb5565b6001905092915050565b60006111d6612ead565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614faa602c913960400191505060405180910390fd5b600061128683613642565b505050505090506112df81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061133781600a546136a990919063ffffffff16565b600a8190555061135283600b546135ba90919063ffffffff16565b600b81905550505050565b60006009548311156113d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816113f75760006113e784613642565b505050505090508091505061140e565b600061140284613642565b50505050915050809150505b92915050565b7f00000000000000000000000077c9bd14a245e19dea569cd58c6fd6c06816e92181565b611440612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061150b306116d8565b9050611516816136f3565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611577612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156116495750600a8111155b6116bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20313000000000000081525060200191505060405180910390fd5b80600f8190555050565b601360159054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561177357600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506117be565b6117bb600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107e565b90505b919050565b6117cb612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a305780601f10611a0557610100808354040283529160200191611a30565b820191906000526020600020905b815481529060010190602001808311611a1357829003601f168201915b5050505050905090565b611a42612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015611b14575060058111155b611b86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f636861726974794665652073686f756c6420626520696e2031202d203500000081525060200191505060405180910390fd5b8060108190555050565b6000611c53611b9d612ead565b84611c4e85604051806060016040528060258152602001614ff96025913960056000611bc7612ead565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134859092919063ffffffff16565b612eb5565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614fd66023913960400191505060405180910390fd5b6002544211611d7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611e8e611e87612ead565b84846130ac565b6001905092915050565b611ea0612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b612023612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61212f612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6123a7612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612467576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360156101000a81548160ff02191690831515021790555050565b61248c612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461254c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f886022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561277957612735600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107e565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61283f612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612985576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614e296026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612a4a612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b0a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000479050612b18816139d7565b50565b600047905090565b612b2b612ead565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612beb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612caa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015612ea9578173ffffffffffffffffffffffffffffffffffffffff1660088281548110612cde57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e9c57600860016008805490500381548110612d3a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110612d7257fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008805480612e6257fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612ea9565b8080600101915050612cad565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614f646024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e4f6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613132576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614f3f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ddc6023913960400191505060405180910390fd5b60008111613211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614f166029913960400191505060405180910390fd5b61321961196f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015613287575061325761196f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156132e8576014548111156132e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614ea56028913960400191505060405180910390fd5b5b60006132f3306116d8565b905060145481106133045760145490505b60006015548210159050601360149054906101000a900460ff161580156133375750601360159054906101000a900460ff165b80156133405750805b801561339857507f00000000000000000000000077c9bd14a245e19dea569cd58c6fd6c06816e92173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156133c0576133a6826136f3565b600047905060008111156133be576133bd476139d7565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134675750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561347157600090505b61347d86868684613a43565b505050505050565b6000838311158290613532576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134f75780820151818401526020810190506134dc565b50505050905090810190601f1680156135245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613552613d54565b91509150613569818361357090919063ffffffff16565b9250505090565b60006135b283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fe5565b905092915050565b600080828401905083811015613638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061365f8a600f546010546140ab565b925092509250600061366f613545565b905060008060006136818e8786614141565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b60006136eb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613485565b905092915050565b6001601360146101000a81548160ff0219169083151502179055506060600267ffffffffffffffff8111801561372857600080fd5b506040519080825280602002602001820160405280156137575781602001602082028036833780820191505090505b509050308160008151811061376857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561380857600080fd5b505afa15801561381c573d6000803e3d6000fd5b505050506040513d602081101561383257600080fd5b81019080805190602001909291905050508160018151811061385057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506138b5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612eb5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561397757808201518184015260208101905061395c565b505050509050019650505050505050600060405180830381600087803b1580156139a057600080fd5b505af11580156139b4573d6000803e3d6000fd5b50505050506000601360146101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613a3f573d6000803e3d6000fd5b5050565b80613a5157613a5061419f565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613af45750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613b0957613b048484846141e2565b613d40565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613bac5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613bc157613bbc848484614442565b613d3f565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613c655750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613c7a57613c758484846146a2565b613d3e565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613d1c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d3157613d2c84848461486d565b613d3d565b613d3c8484846146a2565b5b5b5b5b80613d4e57613d4d614b62565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613fa857826003600060088481548110613d8757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613e6e5750816004600060088481548110613e0657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613e8557600a5460095494509450505050613fe1565b613f0e6003600060088481548110613e9957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846136a990919063ffffffff16565b9250613f996004600060088481548110613f2457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836136a990919063ffffffff16565b91508080600101915050613d68565b50613fc0600954600a5461357090919063ffffffff16565b821015613fd857600a54600954935093505050613fe1565b81819350935050505b9091565b60008083118290614091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561405657808201518184015260208101905061403b565b50505050905090810190601f1680156140835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161409d57fe5b049050809150509392505050565b6000806000806140d760646140c9888a614b7690919063ffffffff16565b61357090919063ffffffff16565b9050600061410160646140f3888b614b7690919063ffffffff16565b61357090919063ffffffff16565b9050600061412a8261411c858c6136a990919063ffffffff16565b6136a990919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061415a8588614b7690919063ffffffff16565b905060006141718688614b7690919063ffffffff16565b9050600061418882846136a990919063ffffffff16565b905082818395509550955050505093509350939050565b6000600f541480156141b357506000601054145b156141bd576141e0565b600f546011819055506010546012819055506000600f8190555060006010819055505b565b6000806000806000806141f487613642565b95509550955095509550955061425287600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142e786600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061437c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143c881614bfc565b6143d28483614da1565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061445487613642565b9550955095509550955095506144b286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061454783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145dc85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061462881614bfc565b6146328483614da1565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806146b487613642565b95509550955095509550955061471286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147a785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147f381614bfc565b6147fd8483614da1565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061487f87613642565b9550955095509550955095506148dd87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061497286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136a990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a0783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a9c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ae881614bfc565b614af28483614da1565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601154600f81905550601254601081905550565b600080831415614b895760009050614bf6565b6000828402905082848281614b9a57fe5b0414614bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614ecd6021913960400191505060405180910390fd5b809150505b92915050565b6000614c06613545565b90506000614c1d8284614b7690919063ffffffff16565b9050614c7181600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614d9c57614d5883600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ba90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614db682600a546136a990919063ffffffff16565b600a81905550614dd181600b546135ba90919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e2031303030303030303030303030303065395472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207e59770ae827c31ec95f98d0be5c72497ded6db862b198d3145b42aead3bc4a864736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000178d98089b1d0ba0edaa2969bb288097a5e437fd

-----Decoded View---------------
Arg [0] : charityWalletAddress (address): 0x178D98089B1d0BA0eDaA2969bb288097a5E437fD

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000178d98089b1d0ba0edaa2969bb288097a5e437fd


Deployed Bytecode Sourcemap

26523:19262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29360:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30364:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31712:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27849:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29673:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45545:233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30549:329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32720:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29570:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30890:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31819:405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32236:472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27911:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38013:168;;;;;;;;;;;;;:::i;:::-;;34461:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44948:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27992:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29788:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16352:160;;;;;;;;;;;;;:::i;:::-;;27792:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15650:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29463:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45141:207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31132:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17459:313;;;;;;;;;;;;;:::i;:::-;;30010:179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31555:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16956:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31425:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45368:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17137:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30201:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38384:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33001:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16684:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38201:171;;;;;;;;;;;;;:::i;:::-;;44810:118;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33488:522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29360:91;29397:13;29434:5;29427:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29360:91;:::o;30364:173::-;30439:4;30460:39;30469:12;:10;:12::i;:::-;30483:7;30492:6;30460:8;:39::i;:::-;30521:4;30514:11;;30364:173;;;;:::o;31712:95::-;31754:7;31785:10;;31778:17;;31712:95;:::o;27849:51::-;;;:::o;29673:103::-;29726:7;29757;;29750:14;;29673:103;:::o;45545:233::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45650:17:::1;45635:11;:32;;45627:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45755:11;45740:12;:26;;;;45545:233:::0;:::o;30549:329::-;30647:4;30668:36;30678:6;30686:9;30697:6;30668:9;:36::i;:::-;30719:121;30728:6;30736:12;:10;:12::i;:::-;30750:89;30788:6;30750:89;;;;;;;;;;;;;;;;;:11;:19;30762:6;30750:19;;;;;;;;;;;;;;;:33;30770:12;:10;:12::i;:::-;30750:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30719:8;:121::i;:::-;30862:4;30855:11;;30549:329;;;;;:::o;32720:269::-;32786:7;32829;;32818;:18;;32810:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32898:19;32921:10;:8;:10::i;:::-;32898:33;;32953:24;32965:11;32953:7;:11;;:24;;;;:::i;:::-;32946:31;;;32720:269;;;:::o;29570:91::-;29611:5;29640:9;;;;;;;;;;;29633:16;;29570:91;:::o;30890:230::-;30978:4;30999:83;31008:12;:10;:12::i;:::-;31022:7;31031:50;31070:10;31031:11;:25;31043:12;:10;:12::i;:::-;31031:25;;;;;;;;;;;;;;;:34;31057:7;31031:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30999:8;:83::i;:::-;31104:4;31097:11;;30890:230;;;;:::o;31819:405::-;31875:14;31892:12;:10;:12::i;:::-;31875:29;;31928:11;:19;31940:6;31928:19;;;;;;;;;;;;;;;;;;;;;;;;;31927:20;31919:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32012:15;32036:19;32047:7;32036:10;:19::i;:::-;32011:44;;;;;;;32088:28;32108:7;32088;:15;32096:6;32088:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32070:7;:15;32078:6;32070:15;;;;;;;;;;;;;;;:46;;;;32141:20;32153:7;32141;;:11;;:20;;;;:::i;:::-;32131:7;:30;;;;32189:23;32204:7;32189:10;;:14;;:23;;;;:::i;:::-;32176:10;:36;;;;31819:405;;;:::o;32236:472::-;32326:7;32369;;32358;:18;;32350:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32432:17;32427:270;;32471:15;32495:19;32506:7;32495:10;:19::i;:::-;32470:44;;;;;;;32540:7;32533:14;;;;;32427:270;32590:23;32621:19;32632:7;32621:10;:19::i;:::-;32588:52;;;;;;;32666:15;32659:22;;;32236:472;;;;;:::o;27911:38::-;;;:::o;38013:168::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38071:23:::1;38097:24;38115:4;38097:9;:24::i;:::-;38071:50;;38136:33;38153:15;38136:16;:33::i;:::-;15962:1;38013:168::o:0;34461:131::-;34525:4;34553:18;:27;34572:7;34553:27;;;;;;;;;;;;;;;;;;;;;;;;;34546:34;;34461:131;;;:::o;44948:181::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45038:1:::1;45028:6;:11;;:27;;;;;45053:2;45043:6;:12;;45028:27;45020:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45111:6;45101:7;:16;;;;44948:181:::0;:::o;27992:30::-;;;;;;;;;;;;;:::o;29788:210::-;29854:7;29882:11;:20;29894:7;29882:20;;;;;;;;;;;;;;;;;;;;;;;;;29878:49;;;29911:7;:16;29919:7;29911:16;;;;;;;;;;;;;;;;29904:23;;;;29878:49;29949:37;29969:7;:16;29977:7;29969:16;;;;;;;;;;;;;;;;29949:19;:37::i;:::-;29942:44;;29788:210;;;;:::o;16352:160::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16463:1:::1;16426:40;;16447:6;::::0;::::1;;;;;;;;16426:40;;;;;;;;;;;;16498:1;16481:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16352:160::o:0;27792:44::-;;;;;;;;;;;;;:::o;15650:87::-;15688:7;15719:6;;;;;;;;;;;15712:13;;15650:87;:::o;29463:95::-;29502:13;29539:7;29532:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29463:95;:::o;45141:207::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45243:1:::1;45229:10;:15;;:34;;;;;45262:1;45248:10;:15;;45229:34;45221:76;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45326:10;45312:11;:24;;;;45141:207:::0;:::o;31132:281::-;31225:4;31246:129;31255:12;:10;:12::i;:::-;31269:7;31278:96;31317:15;31278:96;;;;;;;;;;;;;;;;;:11;:25;31290:12;:10;:12::i;:::-;31278:25;;;;;;;;;;;;;;;:34;31304:7;31278:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31246:8;:129::i;:::-;31397:4;31390:11;;31132:281;;;;:::o;17459:313::-;17533:10;17515:28;;:14;;;;;;;;;;;:28;;;17507:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17612:9;;17606:3;:15;17598:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17707:14;;;;;;;;;;;17678:44;;17699:6;;;;;;;;;;17678:44;;;;;;;;;;;;17746:14;;;;;;;;;;;17737:6;;:23;;;;;;;;;;;;;;;;;;17459:313::o;30010:179::-;30088:4;30109:42;30119:12;:10;:12::i;:::-;30133:9;30144:6;30109:9;:42::i;:::-;30173:4;30166:11;;30010:179;;;;:::o;31555:145::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31680:8:::1;31650:18;:27;31669:7;31650:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;31555:145:::0;;:::o;16956:97::-;17001:7;17032:9;;17025:16;;16956:97;:::o;31425:118::-;31483:4;31511:11;:20;31523:7;31511:20;;;;;;;;;;;;;;;;;;;;;;;;;31504:27;;31425:118;;;:::o;45368:157::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45493:20:::1;45469:21;;:44;;;;;;;;;;;;;;;;;;45368:157:::0;:::o;17137:234::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17222:6:::1;::::0;::::1;;;;;;;;17205:14;;:23;;;;;;;;;;;;;;;;;;17260:1;17243:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17295:4;17289:3;:10;17277:9;:22;;;;17356:1;17319:40;;17340:6;::::0;::::1;;;;;;;;17319:40;;;;;;;;;;;;17137:234:::0;:::o;30201:151::-;30282:7;30313:11;:18;30325:5;30313:18;;;;;;;;;;;;;;;:27;30332:7;30313:27;;;;;;;;;;;;;;;;30306:34;;30201:151;;;;:::o;38384:106::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38471:7:::1;38457:11;;:21;;;;;;;;;;;;;;;;;;38384:106:::0;:::o;33001:475::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33097:42:::1;33086:53;;:7;:53;;;;33078:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33202:11;:20;33214:7;33202:20;;;;;;;;;;;;;;;;;;;;;;;;;33201:21;33193:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33291:1;33272:7;:16;33280:7;33272:16;;;;;;;;;;;;;;;;:20;33269:116;;;33332:37;33352:7;:16;33360:7;33352:16;;;;;;;;;;;;;;;;33332:19;:37::i;:::-;33313:7;:16;33321:7;33313:16;;;;;;;;;;;;;;;:56;;;;33269:116;33422:4;33399:11;:20;33411:7;33399:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33441:9;33456:7;33441:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33001:475:::0;:::o;16684:260::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16797:1:::1;16777:22;;:8;:22;;;;16769:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16891:8;16862:38;;16883:6;::::0;::::1;;;;;;;;16862:38;;;;;;;;;;;;16924:8;16915:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16684:260:::0;:::o;38201:171::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38259:26:::1;38288:21;38259:50;;38324:36;38341:18;38324:16;:36::i;:::-;15962:1;38201:171::o:0;44810:118::-;44856:15;44895:21;44888:28;;44810:118;:::o;33488:522::-;15898:12;:10;:12::i;:::-;15888:22;;:6;;;;;;;;;;:22;;;15880:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33573:11:::1;:20;33585:7;33573:20;;;;;;;;;;;;;;;;;;;;;;;;;33565:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33645:9;33640:359;33664:9;:16;;;;33660:1;:20;33640:359;;;33726:7;33710:23;;:9;33720:1;33710:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33706:278;;;33773:9;33802:1;33783:9;:16;;;;:20;33773:31;;;;;;;;;;;;;;;;;;;;;;;;;33758:9;33768:1;33758:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33846:1;33827:7;:16;33835:7;33827:16;;;;;;;;;;;;;;;:20;;;;33893:5;33870:11;:20;33882:7;33870:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33921:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33959:5;;33706:278;33682:3;;;;;;;33640:359;;;;33488:522:::0;:::o;107:114::-;160:15;199:10;192:17;;107:114;:::o;34604:357::-;34718:1;34701:19;;:5;:19;;;;34693:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34803:1;34784:21;;:7;:21;;;;34776:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34891:6;34861:11;:18;34873:5;34861:18;;;;;;;;;;;;;;;:27;34880:7;34861:27;;;;;;;;;;;;;;;:36;;;;34933:7;34917:32;;34926:5;34917:32;;;34942:6;34917:32;;;;;;;;;;;;;;;;;;34604:357;;;:::o;34973:2067::-;35092:1;35074:20;;:6;:20;;;;35066:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35180:1;35159:23;;:9;:23;;;;35151:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35254:1;35245:6;:10;35237:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35343:7;:5;:7::i;:::-;35333:17;;:6;:17;;;;:41;;;;;35367:7;:5;:7::i;:::-;35354:20;;:9;:20;;;;35333:41;35330:138;;;35411:12;;35401:6;:22;;35393:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35330:138;35754:28;35785:24;35803:4;35785:9;:24::i;:::-;35754:55;;35865:12;;35841:20;:36;35838:124;;35934:12;;35911:35;;35838:124;35990:24;36041:32;;36017:20;:56;;35990:83;;36093:6;;;;;;;;;;;36092:7;:22;;;;;36103:11;;;;;;;;;;;36092:22;:45;;;;;36118:19;36092:45;:72;;;;;36151:13;36141:23;;:6;:23;;;;36092:72;36088:458;;;36278:38;36295:20;36278:16;:38::i;:::-;36353:26;36382:21;36353:50;;36446:1;36425:18;:22;36422:109;;;36472:39;36489:21;36472:16;:39::i;:::-;36422:109;36088:458;;36639:12;36654:4;36639:19;;36778:18;:26;36797:6;36778:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;36808:18;:29;36827:9;36808:29;;;;;;;;;;;;;;;;;;;;;;;;;36778:59;36775:113;;;36867:5;36857:15;;36775:113;36981:47;36996:6;37003:9;37013:6;37020:7;36981:14;:47::i;:::-;34973:2067;;;;;;:::o;4634:208::-;4720:7;4757:1;4752;:6;;4760:12;4744:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4788:9;4804:1;4800;:5;4788:17;;4829:1;4822:8;;;4634:208;;;;;:::o;43782:175::-;43823:7;43848:15;43865;43884:19;:17;:19::i;:::-;43847:56;;;;43925:20;43937:7;43925;:11;;:20;;;;:::i;:::-;43918:27;;;;43782:175;:::o;6164:140::-;6222:7;6253:39;6257:1;6260;6253:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6246:46;;6164:140;;;;:::o;3637:197::-;3695:7;3719:9;3735:1;3731;:5;3719:17;;3764:1;3759;:6;;3751:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:1;3814:8;;;3637:197;;;;:::o;42516:490::-;42575:7;42584;42593;42602;42611;42620;42645:23;42670:12;42684:16;42704:42;42716:7;42725;;42734:11;;42704;:42::i;:::-;42644:102;;;;;;42761:19;42784:10;:8;:10::i;:::-;42761:33;;42810:15;42827:23;42852:12;42868:39;42880:7;42889:4;42895:11;42868;:39::i;:::-;42809:98;;;;;;42930:7;42939:15;42956:4;42962:15;42979:4;42985:8;42922:72;;;;;;;;;;;;;;;;;;;42516:490;;;;;;;:::o;4152:144::-;4210:7;4241:43;4245:1;4248;4241:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4234:50;;4152:144;;;;:::o;37052:656::-;28413:4;28404:6;;:13;;;;;;;;;;;;;;;;;;37197:21:::1;37235:1;37221:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37197:40;;37270:4;37252;37257:1;37252:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;37300:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;37290:4;37295:1;37290:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;37339:62;37356:4;37371:15;37389:11;37339:8;:62::i;:::-;37448:15;:66;;;37533:11;37563:1;37611:4;37642;37666:15;37448:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;28432:1;28457:5:::0;28448:6;;:14;;;;;;;;;;;;;;;;;;37052:656;:::o;37728:115::-;37793:21;;;;;;;;;;;:30;;:38;37824:6;37793:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37728:115;:::o;38510:883::-;38626:7;38622:44;;38652:14;:12;:14::i;:::-;38622:44;38687:11;:19;38699:6;38687:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;38711:11;:22;38723:9;38711:22;;;;;;;;;;;;;;;;;;;;;;;;;38710:23;38687:46;38683:637;;;38754:48;38776:6;38784:9;38795:6;38754:21;:48::i;:::-;38683:637;;;38829:11;:19;38841:6;38829:19;;;;;;;;;;;;;;;;;;;;;;;;;38828:20;:46;;;;;38852:11;:22;38864:9;38852:22;;;;;;;;;;;;;;;;;;;;;;;;;38828:46;38824:496;;;38895:46;38915:6;38923:9;38934:6;38895:19;:46::i;:::-;38824:496;;;38968:11;:19;38980:6;38968:19;;;;;;;;;;;;;;;;;;;;;;;;;38967:20;:47;;;;;38992:11;:22;39004:9;38992:22;;;;;;;;;;;;;;;;;;;;;;;;;38991:23;38967:47;38963:357;;;39035:44;39053:6;39061:9;39072:6;39035:17;:44::i;:::-;38963:357;;;39105:11;:19;39117:6;39105:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39128:11;:22;39140:9;39128:22;;;;;;;;;;;;;;;;;;;;;;;;;39105:45;39101:219;;;39171:48;39193:6;39201:9;39212:6;39171:21;:48::i;:::-;39101:219;;;39260:44;39278:6;39286:9;39297:6;39260:17;:44::i;:::-;39101:219;38963:357;38824:496;38683:637;39340:7;39336:45;;39366:15;:13;:15::i;:::-;39336:45;38510:883;;;;:::o;43969:601::-;44019:7;44028;44052:15;44070:7;;44052:25;;44092:15;44110:7;;44092:25;;44143:9;44138:305;44162:9;:16;;;;44158:1;:20;44138:305;;;44232:7;44208;:21;44216:9;44226:1;44216:12;;;;;;;;;;;;;;;;;;;;;;;;;44208:21;;;;;;;;;;;;;;;;:31;:66;;;;44267:7;44243;:21;44251:9;44261:1;44251:12;;;;;;;;;;;;;;;;;;;;;;;;;44243:21;;;;;;;;;;;;;;;;:31;44208:66;44204:97;;;44284:7;;44293;;44276:25;;;;;;;;;44204:97;44330:34;44342:7;:21;44350:9;44360:1;44350:12;;;;;;;;;;;;;;;;;;;;;;;;;44342:21;;;;;;;;;;;;;;;;44330:7;:11;;:34;;;;:::i;:::-;44320:44;;44393:34;44405:7;:21;44413:9;44423:1;44413:12;;;;;;;;;;;;;;;;;;;;;;;;;44405:21;;;;;;;;;;;;;;;;44393:7;:11;;:34;;;;:::i;:::-;44383:44;;44180:3;;;;;;;44138:305;;;;44471:20;44483:7;;44471;;:11;;:20;;;;:::i;:::-;44461:7;:30;44457:61;;;44501:7;;44510;;44493:25;;;;;;;;44457:61;44541:7;44550;44533:25;;;;;;43969:601;;;:::o;6841:298::-;6927:7;6963:1;6959;:5;6966:12;6951:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6994:9;7010:1;7006;:5;;;;;;6994:17;;7126:1;7119:8;;;6841:298;;;;;:::o;43018:386::-;43114:7;43123;43132;43156:12;43171:28;43195:3;43171:19;43183:6;43171:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43156:43;;43214:16;43233:32;43261:3;43233:23;43245:10;43233:7;:11;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;43214:51;;43280:23;43306:31;43328:8;43306:17;43318:4;43306:7;:11;;:17;;;;:::i;:::-;:21;;:31;;;;:::i;:::-;43280:57;;43360:15;43377:4;43383:8;43352:40;;;;;;;;;43018:386;;;;;;;:::o;43416:354::-;43511:7;43520;43529;43553:15;43571:24;43583:11;43571:7;:11;;:24;;;;:::i;:::-;43553:42;;43610:12;43625:21;43634:11;43625:4;:8;;:21;;;;:::i;:::-;43610:36;;43661:23;43687:17;43699:4;43687:7;:11;;:17;;;;:::i;:::-;43661:43;;43727:7;43736:15;43753:4;43719:39;;;;;;;;;43416:354;;;;;;;:::o;34022:274::-;34083:1;34072:7;;:12;:32;;;;;34103:1;34088:11;;:16;34072:32;34069:44;;;34106:7;;34069:44;34159:7;;34141:15;:25;;;;34203:11;;34181:19;:33;;;;34253:1;34243:7;:11;;;;34283:1;34269:11;:15;;;;34022:274;:::o;40571:593::-;40678:15;40695:23;40720:12;40734:23;40759:12;40773:16;40793:19;40804:7;40793:10;:19::i;:::-;40677:135;;;;;;;;;;;;40845:28;40865:7;40845;:15;40853:6;40845:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40827:7;:15;40835:6;40827:15;;;;;;;;;;;;;;;:46;;;;40906:28;40926:7;40906;:15;40914:6;40906:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40888:7;:15;40896:6;40888:15;;;;;;;;;;;;;;;:46;;;;40970:39;40993:15;40970:7;:18;40978:9;40970:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40949:7;:18;40957:9;40949:18;;;;;;;;;;;;;;;:60;;;;41025:22;41038:8;41025:12;:22::i;:::-;41065:23;41077:4;41083;41065:11;:23::i;:::-;41125:9;41108:44;;41117:6;41108:44;;;41136:15;41108:44;;;;;;;;;;;;;;;;;;40571:593;;;;;;;;;:::o;39943:616::-;40048:15;40065:23;40090:12;40104:23;40129:12;40143:16;40163:19;40174:7;40163:10;:19::i;:::-;40047:135;;;;;;;;;;;;40215:28;40235:7;40215;:15;40223:6;40215:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40197:7;:15;40205:6;40197:15;;;;;;;;;;;;;;;:46;;;;40279:39;40302:15;40279:7;:18;40287:9;40279:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40258:7;:18;40266:9;40258:18;;;;;;;;;;;;;;;:60;;;;40354:39;40377:15;40354:7;:18;40362:9;40354:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40333:7;:18;40341:9;40333:18;;;;;;;;;;;;;;;:60;;;;40412:22;40425:8;40412:12;:22::i;:::-;40460:23;40472:4;40478;40460:11;:23::i;:::-;40520:9;40503:44;;40512:6;40503:44;;;40531:15;40503:44;;;;;;;;;;;;;;;;;;39943:616;;;;;;;;;:::o;39405:526::-;39508:15;39525:23;39550:12;39564:23;39589:12;39603:16;39623:19;39634:7;39623:10;:19::i;:::-;39507:135;;;;;;;;;;;;39675:28;39695:7;39675;:15;39683:6;39675:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39657:7;:15;39665:6;39657:15;;;;;;;;;;;;;;;:46;;;;39739:39;39762:15;39739:7;:18;39747:9;39739:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;39718:7;:18;39726:9;39718:18;;;;;;;;;;;;;;;:60;;;;39794:22;39807:8;39794:12;:22::i;:::-;39832:23;39844:4;39850;39832:11;:23::i;:::-;39892:9;39875:44;;39884:6;39875:44;;;39903:15;39875:44;;;;;;;;;;;;;;;;;;39405:526;;;;;;;;;:::o;41176:676::-;41283:15;41300:23;41325:12;41339:23;41364:12;41378:16;41398:19;41409:7;41398:10;:19::i;:::-;41282:135;;;;;;;;;;;;41450:28;41470:7;41450;:15;41458:6;41450:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41432:7;:15;41440:6;41432:15;;;;;;;;;;;;;;;:46;;;;41511:28;41531:7;41511;:15;41519:6;41511:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41493:7;:15;41501:6;41493:15;;;;;;;;;;;;;;;:46;;;;41575:39;41598:15;41575:7;:18;41583:9;41575:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41554:7;:18;41562:9;41554:18;;;;;;;;;;;;;;;:60;;;;41650:39;41673:15;41650:7;:18;41658:9;41650:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41629:7;:18;41637:9;41629:18;;;;;;;;;;;;;;;:60;;;;41707:22;41720:8;41707:12;:22::i;:::-;41753:23;41765:4;41771;41753:11;:23::i;:::-;41813:9;41796:44;;41805:6;41796:44;;;41824:15;41796:44;;;;;;;;;;;;;;;;;;41176:676;;;;;;;;;:::o;34312:133::-;34370:15;;34360:7;:25;;;;34414:19;;34400:11;:33;;;;34312:133::o;5136:511::-;5194:7;5460:1;5455;:6;5451:55;;;5489:1;5482:8;;;;5451:55;5522:9;5538:1;5534;:5;5522:17;;5571:1;5566;5562;:5;;;;;;:10;5554:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5634:1;5627:8;;;5136:511;;;;;:::o;41864:367::-;41927:19;41950:10;:8;:10::i;:::-;41927:33;;41975:16;41994:25;42007:11;41994:8;:12;;:25;;;;:::i;:::-;41975:44;;42059:36;42086:8;42059:7;:22;42075:4;42059:22;;;;;;;;;;;;;;;;:26;;:36;;;;:::i;:::-;42034:7;:22;42050:4;42034:22;;;;;;;;;;;;;;;:61;;;;42113:11;:26;42133:4;42113:26;;;;;;;;;;;;;;;;;;;;;;;;;42110:109;;;42183:36;42210:8;42183:7;:22;42199:4;42183:22;;;;;;;;;;;;;;;;:26;;:36;;;;:::i;:::-;42158:7;:22;42174:4;42158:22;;;;;;;;;;;;;;;:61;;;;42110:109;41864:367;;;:::o;42243:159::-;42325:17;42337:4;42325:7;;:11;;:17;;;;:::i;:::-;42315:7;:27;;;;42370:20;42385:4;42370:10;;:14;;:20;;;;:::i;:::-;42357:10;:33;;;;42243:159;;:::o

Swarm Source

ipfs://7e59770ae827c31ec95f98d0be5c72497ded6db862b198d3145b42aead3bc4a8

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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