ERC-20
Deflationary Token
Overview
Max Total Supply
699,817.567869667382990037 KLING
Holders
97 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.008876844555436854 KLINGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KLING
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-07 */ pragma solidity ^0.6.0; //SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * // importANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [// importANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * // importANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ 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; } // pragma solidity >=0.5.0; interface IUniswapV2ERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; } interface 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; } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract KLING is IERC20, Ownable, ReentrancyGuard { using SafeMath for uint256; mapping (address => mapping (address => uint256)) private _allowances; bool transferPaused = true; string private _name = "Klingons.eth.link"; string private _symbol = "KLING"; uint8 private _decimals = 18; IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable uniswapV2Pair; address public _burnPool = 0x0000000000000000000000000000000000000000; address public presale; mapping (address => uint256) private _aOwned; mapping (address => uint256) private _tOwned; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 70 * 10**4 * 10**18; uint256 private _aTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint8 public feeDecimals; uint32 public feePercentage; uint256 taxToHolders = 9999999999999999999999999; uint256 internal _minimumSupply; uint256 public _totalBurnedTokens; uint256 public _totalBurnedLpTokens; uint256 public _balanceOfLpTokens; event FeeUpdated(uint8 feeDecimals, uint32 feePercentage); constructor( uint8 _feeDecimals, uint32 _feePercentage, address _presale)public { _aOwned[_msgSender()] = _aTotal; presale = _presale; // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); // set the rest of the contract variables updateFee(_feeDecimals, _feePercentage); emit Transfer(address(0), _msgSender(), _tTotal); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _tTotal; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromAllocation(_aOwned[account]); } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _transfer( address from, address to, uint256 amount ) internal { if (transferPaused){ if (to == address(uniswapV2Pair) || to == address(uniswapV2Router) || to == address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f)){ revert(); // IUniswapV2Factory address } } uint256 tokenstoBurn = calcTokenFee( amount, feeDecimals, feePercentage ); if (tokenstoBurn > 0){ if (_isExcluded[from] && !_isExcluded[to]) { _transferFromExcluded(from, _burnPool, tokenstoBurn); } else if (!_isExcluded[from] && _isExcluded[to]) { _transferToExcluded(from, _burnPool, tokenstoBurn); } else if (!_isExcluded[from] && !_isExcluded[to]) { _transferStandard(from, _burnPool, tokenstoBurn); } else if (_isExcluded[from] && _isExcluded[to]) { _transferBothExcluded(from, _burnPool, tokenstoBurn); } else { _transferStandard(from, _burnPool, tokenstoBurn); } } _tTotal = _tTotal.sub(tokenstoBurn); // Burn a portion, typically 0.1% // and then send the remainder of tokens to original recipient uint256 tokensToTransfer = amount.sub(tokenstoBurn); if (_isExcluded[from] && !_isExcluded[to]) { _transferFromExcluded(from, to, tokensToTransfer); } else if (!_isExcluded[from] && _isExcluded[to]) { _transferToExcluded(from, to, tokensToTransfer); } else if (!_isExcluded[from] && !_isExcluded[to]) { _transferStandard(from, to, tokensToTransfer); } else if (_isExcluded[from] && _isExcluded[to]) { _transferBothExcluded(from, to, tokensToTransfer); } else { _transferStandard(from, to, tokensToTransfer); } } function unPauseTransferForever() external nonReentrant { require (msg.sender == presale, "Only the presale contract can call this"); transferPaused = false; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ receive () external payable { revert(); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } function minimumSupply() external view returns (uint256){ return _minimumSupply; } /* override the internal _transfer function so that we can take the fee, and conditionally do the swap + liquditiy */ function swapTokensForEth(uint256 tokenAmount) private { // 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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } /* calculates a percentage of tokens to hold as the fee */ function calcTokenFee( uint256 _amount, uint8 _feeDecimals, uint32 _feePercentage ) public pure returns (uint256 locked) { locked = _amount.mul(_feePercentage).div( 10**(uint256(_feeDecimals) + 2) ); } /// /// Ownership adjustments /// function updateFee(uint8 _feeDecimals, uint32 _feePercentage) public onlyOwner nonReentrant { require(_feePercentage <= 1, "The fee can't be more than 1%"); feeDecimals = _feeDecimals; feePercentage = _feePercentage; emit FeeUpdated(_feeDecimals, _feePercentage); } function burnLiq(address _token, address _to, uint256 _amount) public onlyOwner nonReentrant { require(_to != address(0),"ERC20 transfer to zero address"); IUniswapV2ERC20 token = IUniswapV2ERC20(_token); _totalBurnedLpTokens = _totalBurnedLpTokens.sub(_amount); token.transfer(_burnPool, _amount); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _aOwned[sender] = _aOwned[sender].sub(aAmount); _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount); _allocationFee(aFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _aOwned[sender] = _aOwned[sender].sub(aAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount); _allocationFee(aFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _aOwned[sender] = _aOwned[sender].sub(aAmount); _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount); _allocationFee(aFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _aOwned[sender] = _aOwned[sender].sub(aAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount); _allocationFee(aFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _allocationFee(uint256 aFee, uint256 tFee) private { _aTotal = _aTotal.sub(aFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = __getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 aAmount, uint256 aTransferAmount, uint256 aFee) = _getAValues(tAmount, tFee, currentRate); return (aAmount, aTransferAmount, aFee, tTransferAmount, tFee); } function changeTaxReturnedToHolders(uint256 n) external onlyOwner { require(n >= 100, "The Tax Returned to Holders not more than 1%"); require(n <= 1000, "The Tax Returned to Holders not less than 0.1%"); taxToHolders = n; } function __getTValues(uint256 tAmount) private view returns (uint256, uint256) { uint256 tFee = tAmount.div(taxToHolders); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getAValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 aAmount = tAmount.mul(currentRate); uint256 aFee = tFee.mul(currentRate); uint256 aTransferAmount = aAmount.sub(aFee); return (aAmount, aTransferAmount, aFee); } function _getRate() private view returns(uint256) { (uint256 aSupply, uint256 tSupply) = _getCurrentSupply(); return aSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 aSupply = _aTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_aOwned[_excluded[i]] > aSupply || _tOwned[_excluded[i]] > tSupply) return (_aTotal, _tTotal); aSupply = aSupply.sub(_aOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (aSupply < _aTotal.div(_tTotal)) return (_aTotal, _tTotal); return (aSupply, tSupply); } function allocate(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 aAmount,,,,) = _getValues(tAmount); _aOwned[sender] = _aOwned[sender].sub(aAmount); _aTotal = _aTotal.sub(aAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function allocationFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 aAmount,,,,) = _getValues(tAmount); return aAmount; } else { (,uint256 aTransferAmount,,,) = _getValues(tAmount); return aTransferAmount; } } function tokenFromAllocation(uint256 aAmount) public view returns(uint256) { require(aAmount <= _aTotal, "Amount must be less than the total allocations"); uint256 currentRate = _getRate(); return aAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner nonReentrant { require(!_isExcluded[account], "Account is already excluded"); if(_aOwned[account] > 0) { _tOwned[account] = tokenFromAllocation(_aOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner nonReentrant { 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; } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"},{"internalType":"address","name":"_presale","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":"uint8","name":"feeDecimals","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_balanceOfLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"allocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"allocationFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"calcTokenFee","outputs":[{"internalType":"uint256","name":"locked","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"changeTaxReturnedToHolders","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":[],"name":"minimumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"aAmount","type":"uint256"}],"name":"tokenFromAllocation","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":"unPauseTransferForever","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":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526001600360006101000a81548160ff0219169083151502179055506040518060400160405280601181526020017f4b6c696e676f6e732e6574682e6c696e6b000000000000000000000000000000815250600490805190602001906200006c92919062000814565b506040518060400160405280600581526020017f4b4c494e4700000000000000000000000000000000000000000000000000000081525060059080519060200190620000ba92919062000814565b506012600660006101000a81548160ff021916908360ff1602179055506000600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069943b1377290cbd800000600c55600c54600019816200013557fe5b0660001903600d556a0845951614014849ffffff6010553480156200015957600080fd5b5060405162004e6d38038062004e6d833981810160405260608110156200017f57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050506000620001b6620005ac60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060018081905550600d546008600062000272620005ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034c57600080fd5b505afa15801562000361573d6000803e3d6000fd5b505050506040513d60208110156200037857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040057600080fd5b505afa15801562000415573d6000803e3d6000fd5b505050506040513d60208110156200042c57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004a757600080fd5b505af1158015620004bc573d6000803e3d6000fd5b505050506040513d6020811015620004d357600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200052c8383620005b460201b60201c565b6200053c620005ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a3505050620008ba565b600033905090565b620005c4620005ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000685576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415620006ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060018163ffffffff16111562000785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f546865206665652063616e2774206265206d6f7265207468616e20312500000081525060200191505060405180910390fd5b81600f60006101000a81548160ff021916908360ff16021790555080600f60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200085757805160ff191683800117855562000888565b8280016001018555821562000888579182015b82811115620008875782518255916020019190600101906200086a565b5b5090506200089791906200089b565b5090565b5b80821115620008b65760008160009055506001016200089c565b5090565b60805160601c614590620008dd600039806110be5280612b5e52506145906000f3fe6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063cc0f1786116100a0578063f2fde38b1161006f578063f2fde38b14610b51578063f51d4df514610ba2578063f84354f114610bcd578063fdea8e0b14610c1e578063ff7c479014610c5f57610207565b8063cc0f1786146109ff578063dd62ed3e14610a2d578063eaa93e7814610ab2578063f2cc0c1814610b0057610207565b8063a001ecdd116100dc578063a001ecdd1461089d578063a457c2d7146108ce578063a9059cbb1461093f578063c44b75b0146109b057610207565b80638da5cb5b1461076657806390ca796b146107a757806391fe5a64146107e257806395d89b411461080d57610207565b80633950935111610190578063647af8e61161015f578063647af8e61461062d578063689dc62d1461064457806370a08231146106bf578063715018a6146107245780637ede036d1461073b57610207565b806339509351146104b457806349bd5a5e146105255780634a45b7d91461056657806354bf9359146105c157610207565b806323b872dd116101cc57806323b872dd1461037957806328d2bc911461040a5780632993e8e31461044b578063313ce5671461048657610207565b806306fdde031461020c578063095ea7b31461029c5780631694505e1461030d57806318160ddd1461034e57610207565b3661020757600080fd5b600080fd5b34801561021857600080fd5b50610221610c8a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610261578082015181840152602081019050610246565b50505050905090810190601f16801561028e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a857600080fd5b506102f5600480360360408110156102bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d2c565b60405180821515815260200191505060405180910390f35b34801561031957600080fd5b50610322610d4a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561035a57600080fd5b50610363610d62565b6040518082815260200191505060405180910390f35b34801561038557600080fd5b506103f26004803603606081101561039c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d6c565b60405180821515815260200191505060405180910390f35b34801561041657600080fd5b5061041f610e45565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561045757600080fd5b506104846004803603602081101561046e57600080fd5b8101908080359060200190929190505050610e6b565b005b34801561049257600080fd5b5061049b610ff2565b604051808260ff16815260200191505060405180910390f35b3480156104c057600080fd5b5061050d600480360360408110156104d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611009565b60405180821515815260200191505060405180910390f35b34801561053157600080fd5b5061053a6110bc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561057257600080fd5b506105ab6004803603604081101561058957600080fd5b81019080803590602001909291908035151590602001909291905050506110e0565b6040518082815260200191505060405180910390f35b3480156105cd57600080fd5b50610617600480360360608110156105e457600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611195565b6040518082815260200191505060405180910390f35b34801561063957600080fd5b506106426111d4565b005b34801561065057600080fd5b506106bd6004803603606081101561066757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061131f565b005b3480156106cb57600080fd5b5061070e600480360360208110156106e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611607565b6040518082815260200191505060405180910390f35b34801561073057600080fd5b506107396116f2565b005b34801561074757600080fd5b50610750611878565b6040518082815260200191505060405180910390f35b34801561077257600080fd5b5061077b611882565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107b357600080fd5b506107e0600480360360208110156107ca57600080fd5b81019080803590602001909291905050506118ab565b005b3480156107ee57600080fd5b506107f7611a3b565b6040518082815260200191505060405180910390f35b34801561081957600080fd5b50610822611a41565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610862578082015181840152602081019050610847565b50505050905090810190601f16801561088f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108a957600080fd5b506108b2611ae3565b604051808263ffffffff16815260200191505060405180910390f35b3480156108da57600080fd5b50610927600480360360408110156108f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611af9565b60405180821515815260200191505060405180910390f35b34801561094b57600080fd5b506109986004803603604081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bc6565b60405180821515815260200191505060405180910390f35b3480156109bc57600080fd5b506109e9600480360360208110156109d357600080fd5b8101908080359060200190929190505050611be4565b6040518082815260200191505060405180910390f35b348015610a0b57600080fd5b50610a14611c68565b604051808260ff16815260200191505060405180910390f35b348015610a3957600080fd5b50610a9c60048036036040811015610a5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c7b565b6040518082815260200191505060405180910390f35b348015610abe57600080fd5b50610afe60048036036040811015610ad557600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190505050611d02565b005b348015610b0c57600080fd5b50610b4f60048036036020811015610b2357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f57565b005b348015610b5d57600080fd5b50610ba060048036036020811015610b7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122f9565b005b348015610bae57600080fd5b50610bb7612504565b6040518082815260200191505060405180910390f35b348015610bd957600080fd5b50610c1c60048036036020811015610bf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061250a565b005b348015610c2a57600080fd5b50610c3361291c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c6b57600080fd5b50610c74612942565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d225780601f10610cf757610100808354040283529160200191610d22565b820191906000526020600020905b815481529060010190602001808311610d0557829003601f168201915b5050505050905090565b6000610d40610d39612948565b8484612950565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600c54905090565b6000610d79848484612b47565b610e3a84610d85612948565b610e358560405180606001604052806028815260200161446b60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610deb612948565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133459092919063ffffffff16565b612950565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e73612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064811015610f8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614493602c913960400191505060405180910390fd5b6103e8811115610fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061441c602e913960400191505060405180910390fd5b8060108190555050565b6000600660009054906101000a900460ff16905090565b60006110b2611016612948565b846110ad8560026000611027612948565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b612950565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600c5483111561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161117957600061116a8461348d565b5050505090508091505061118f565b60006111848461348d565b505050915050809150505b92915050565b60006111cb60028460ff1601600a0a6111bd8463ffffffff16876134e590919063ffffffff16565b61356b90919063ffffffff16565b90509392505050565b6002600154141561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061450f6027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b611327612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611525826013546135b590919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156115be57600080fd5b505af11580156115d2573d6000803e3d6000fd5b505050506040513d60208110156115e857600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116a257600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506116ed565b6116ea600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611be4565b90505b919050565b6116fa612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006118b5612948565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144e3602c913960400191505060405180910390fd5b60006119658361348d565b5050505090506119bd81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a1581600d546135b590919063ffffffff16565b600d81905550611a3083600e5461340590919063ffffffff16565b600e81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ad95780601f10611aae57610100808354040283529160200191611ad9565b820191906000526020600020905b815481529060010190602001808311611abc57829003601f168201915b5050505050905090565b600f60019054906101000a900463ffffffff1681565b6000611bbc611b06612948565b84611bb7856040518060600160405280602581526020016145366025913960026000611b30612948565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133459092919063ffffffff16565b612950565b6001905092915050565b6000611bda611bd3612948565b8484612b47565b6001905092915050565b6000600d54821115611c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806143ee602e913960400191505060405180910390fd5b6000611c4b6135ff565b9050611c60818461356b90919063ffffffff16565b915050919050565b600f60009054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d0a612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611e43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060018163ffffffff161115611ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f546865206665652063616e2774206265206d6f7265207468616e20312500000081525060200191505060405180910390fd5b81600f60006101000a81548160ff021916908360ff16021790555080600f60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b611f5f612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461201f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612234576121f0600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611be4565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612301612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143a66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612512612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141561264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b80549050811015612911578173ffffffffffffffffffffffffffffffffffffffff16600b828154811061274657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561290457600b6001600b8054905003815481106127a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b82815481106127da57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b8054806128ca57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612911565b8080600101915050612715565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144bf6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143cc6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff1615612c4a577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480612bf55750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612c3f5750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15612c4957600080fd5b5b6000612c7882600f60009054906101000a900460ff16600f60019054906101000a900463ffffffff16611195565b9050600081111561301d57600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d265750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d5d57612d5884600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361362a565b61301c565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612e005750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e3757612e3284600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361387d565b61301b565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612edb5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1257612f0d84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613ad0565b61301a565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb45750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612feb57612fe684600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613c8e565b613019565b61301884600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613ad0565b5b5b5b5b5b61303281600c546135b590919063ffffffff16565b600c81905550600061304d82846135b590919063ffffffff16565b9050600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130f25750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131075761310285858361362a565b61333e565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156131aa5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131bf576131ba85858361387d565b61333d565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156132635750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561327857613273858583613ad0565b61333c565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561331a5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561332f5761332a858583613c8e565b61333b565b61333a858583613ad0565b5b5b5b5b5050505050565b60008383111582906133f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133b757808201518184015260208101905061339c565b50505050905090810190601f1680156133e45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060006134a188613f76565b9150915060006134af6135ff565b905060008060006134c18c8686613fb6565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b6000808314156134f85760009050613565565b600082840290508284828161350957fe5b0414613560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061444a6021913960400191505060405180910390fd5b809150505b92915050565b60006135ad83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614014565b905092915050565b60006135f783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613345565b905092915050565b600080600061360c6140da565b91509150613623818361356b90919063ffffffff16565b9250505090565b600080600080600061363b8661348d565b9450945094509450945061369786600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061372c85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137c184600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061380e838261436b565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061388e8661348d565b945094509450945094506138ea85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061397f82600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a1484600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a61838261436b565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613ae18661348d565b94509450945094509450613b3d85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bd284600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c1f838261436b565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613c9f8661348d565b94509450945094509450613cfb86600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d9085600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e2582600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613eba84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f07838261436b565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000613f906010548561356b90919063ffffffff16565b90506000613fa782866135b590919063ffffffff16565b90508082935093505050915091565b600080600080613fcf85886134e590919063ffffffff16565b90506000613fe686886134e590919063ffffffff16565b90506000613ffd82846135b590919063ffffffff16565b905082818395509550955050505093509350939050565b600080831182906140c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561408557808201518184015260208101905061406a565b50505050905090810190601f1680156140b25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816140cc57fe5b049050809150509392505050565b6000806000600d5490506000600c54905060005b600b8054905081101561432e578260086000600b848154811061410d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806141f457508160096000600b848154811061418c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561420b57600d54600c5494509450505050614367565b61429460086000600b848154811061421f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846135b590919063ffffffff16565b925061431f60096000600b84815481106142aa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836135b590919063ffffffff16565b915080806001019150506140ee565b50614346600c54600d5461356b90919063ffffffff16565b82101561435e57600d54600c54935093505050614367565b81819350935050505b9091565b61438082600d546135b590919063ffffffff16565b600d8190555061439b81600e5461340590919063ffffffff16565b600e81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73546865205461782052657475726e656420746f20486f6c64657273206e6f74206c657373207468616e20302e3125536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365546865205461782052657475726e656420746f20486f6c64657273206e6f74206d6f7265207468616e20312545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c97ea5e3642c80bc1f11addf7df812b0cee1daf56ceb4d862b613c7bf35bfd4664736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000279489ecd26941df9098f53f4ea81f4bc160d9d8
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063cc0f1786116100a0578063f2fde38b1161006f578063f2fde38b14610b51578063f51d4df514610ba2578063f84354f114610bcd578063fdea8e0b14610c1e578063ff7c479014610c5f57610207565b8063cc0f1786146109ff578063dd62ed3e14610a2d578063eaa93e7814610ab2578063f2cc0c1814610b0057610207565b8063a001ecdd116100dc578063a001ecdd1461089d578063a457c2d7146108ce578063a9059cbb1461093f578063c44b75b0146109b057610207565b80638da5cb5b1461076657806390ca796b146107a757806391fe5a64146107e257806395d89b411461080d57610207565b80633950935111610190578063647af8e61161015f578063647af8e61461062d578063689dc62d1461064457806370a08231146106bf578063715018a6146107245780637ede036d1461073b57610207565b806339509351146104b457806349bd5a5e146105255780634a45b7d91461056657806354bf9359146105c157610207565b806323b872dd116101cc57806323b872dd1461037957806328d2bc911461040a5780632993e8e31461044b578063313ce5671461048657610207565b806306fdde031461020c578063095ea7b31461029c5780631694505e1461030d57806318160ddd1461034e57610207565b3661020757600080fd5b600080fd5b34801561021857600080fd5b50610221610c8a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610261578082015181840152602081019050610246565b50505050905090810190601f16801561028e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a857600080fd5b506102f5600480360360408110156102bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d2c565b60405180821515815260200191505060405180910390f35b34801561031957600080fd5b50610322610d4a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561035a57600080fd5b50610363610d62565b6040518082815260200191505060405180910390f35b34801561038557600080fd5b506103f26004803603606081101561039c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d6c565b60405180821515815260200191505060405180910390f35b34801561041657600080fd5b5061041f610e45565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561045757600080fd5b506104846004803603602081101561046e57600080fd5b8101908080359060200190929190505050610e6b565b005b34801561049257600080fd5b5061049b610ff2565b604051808260ff16815260200191505060405180910390f35b3480156104c057600080fd5b5061050d600480360360408110156104d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611009565b60405180821515815260200191505060405180910390f35b34801561053157600080fd5b5061053a6110bc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561057257600080fd5b506105ab6004803603604081101561058957600080fd5b81019080803590602001909291908035151590602001909291905050506110e0565b6040518082815260200191505060405180910390f35b3480156105cd57600080fd5b50610617600480360360608110156105e457600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611195565b6040518082815260200191505060405180910390f35b34801561063957600080fd5b506106426111d4565b005b34801561065057600080fd5b506106bd6004803603606081101561066757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061131f565b005b3480156106cb57600080fd5b5061070e600480360360208110156106e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611607565b6040518082815260200191505060405180910390f35b34801561073057600080fd5b506107396116f2565b005b34801561074757600080fd5b50610750611878565b6040518082815260200191505060405180910390f35b34801561077257600080fd5b5061077b611882565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107b357600080fd5b506107e0600480360360208110156107ca57600080fd5b81019080803590602001909291905050506118ab565b005b3480156107ee57600080fd5b506107f7611a3b565b6040518082815260200191505060405180910390f35b34801561081957600080fd5b50610822611a41565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610862578082015181840152602081019050610847565b50505050905090810190601f16801561088f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108a957600080fd5b506108b2611ae3565b604051808263ffffffff16815260200191505060405180910390f35b3480156108da57600080fd5b50610927600480360360408110156108f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611af9565b60405180821515815260200191505060405180910390f35b34801561094b57600080fd5b506109986004803603604081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bc6565b60405180821515815260200191505060405180910390f35b3480156109bc57600080fd5b506109e9600480360360208110156109d357600080fd5b8101908080359060200190929190505050611be4565b6040518082815260200191505060405180910390f35b348015610a0b57600080fd5b50610a14611c68565b604051808260ff16815260200191505060405180910390f35b348015610a3957600080fd5b50610a9c60048036036040811015610a5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c7b565b6040518082815260200191505060405180910390f35b348015610abe57600080fd5b50610afe60048036036040811015610ad557600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190505050611d02565b005b348015610b0c57600080fd5b50610b4f60048036036020811015610b2357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f57565b005b348015610b5d57600080fd5b50610ba060048036036020811015610b7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122f9565b005b348015610bae57600080fd5b50610bb7612504565b6040518082815260200191505060405180910390f35b348015610bd957600080fd5b50610c1c60048036036020811015610bf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061250a565b005b348015610c2a57600080fd5b50610c3361291c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c6b57600080fd5b50610c74612942565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d225780601f10610cf757610100808354040283529160200191610d22565b820191906000526020600020905b815481529060010190602001808311610d0557829003601f168201915b5050505050905090565b6000610d40610d39612948565b8484612950565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600c54905090565b6000610d79848484612b47565b610e3a84610d85612948565b610e358560405180606001604052806028815260200161446b60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610deb612948565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133459092919063ffffffff16565b612950565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e73612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064811015610f8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614493602c913960400191505060405180910390fd5b6103e8811115610fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061441c602e913960400191505060405180910390fd5b8060108190555050565b6000600660009054906101000a900460ff16905090565b60006110b2611016612948565b846110ad8560026000611027612948565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b612950565b6001905092915050565b7f0000000000000000000000003aa2daf0b4714e27b6924c8438dac89772abe88981565b6000600c5483111561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161117957600061116a8461348d565b5050505090508091505061118f565b60006111848461348d565b505050915050809150505b92915050565b60006111cb60028460ff1601600a0a6111bd8463ffffffff16876134e590919063ffffffff16565b61356b90919063ffffffff16565b90509392505050565b6002600154141561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061450f6027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b611327612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611525826013546135b590919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156115be57600080fd5b505af11580156115d2573d6000803e3d6000fd5b505050506040513d60208110156115e857600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116a257600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506116ed565b6116ea600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611be4565b90505b919050565b6116fa612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006118b5612948565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806144e3602c913960400191505060405180910390fd5b60006119658361348d565b5050505090506119bd81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a1581600d546135b590919063ffffffff16565b600d81905550611a3083600e5461340590919063ffffffff16565b600e81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ad95780601f10611aae57610100808354040283529160200191611ad9565b820191906000526020600020905b815481529060010190602001808311611abc57829003601f168201915b5050505050905090565b600f60019054906101000a900463ffffffff1681565b6000611bbc611b06612948565b84611bb7856040518060600160405280602581526020016145366025913960026000611b30612948565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133459092919063ffffffff16565b612950565b6001905092915050565b6000611bda611bd3612948565b8484612b47565b6001905092915050565b6000600d54821115611c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806143ee602e913960400191505060405180910390fd5b6000611c4b6135ff565b9050611c60818461356b90919063ffffffff16565b915050919050565b600f60009054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d0a612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611e43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060018163ffffffff161115611ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f546865206665652063616e2774206265206d6f7265207468616e20312500000081525060200191505060405180910390fd5b81600f60006101000a81548160ff021916908360ff16021790555080600f60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b611f5f612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461201f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612234576121f0600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611be4565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612301612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612447576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143a66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612512612948565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141561264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b80549050811015612911578173ffffffffffffffffffffffffffffffffffffffff16600b828154811061274657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561290457600b6001600b8054905003815481106127a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b82815481106127da57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b8054806128ca57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612911565b8080600101915050612715565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806144bf6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143cc6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff1615612c4a577f0000000000000000000000003aa2daf0b4714e27b6924c8438dac89772abe88973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480612bf55750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612c3f5750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15612c4957600080fd5b5b6000612c7882600f60009054906101000a900460ff16600f60019054906101000a900463ffffffff16611195565b9050600081111561301d57600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d265750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d5d57612d5884600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361362a565b61301c565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612e005750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e3757612e3284600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361387d565b61301b565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612edb5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1257612f0d84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613ad0565b61301a565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb45750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612feb57612fe684600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613c8e565b613019565b61301884600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613ad0565b5b5b5b5b5b61303281600c546135b590919063ffffffff16565b600c81905550600061304d82846135b590919063ffffffff16565b9050600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130f25750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131075761310285858361362a565b61333e565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156131aa5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131bf576131ba85858361387d565b61333d565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156132635750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561327857613273858583613ad0565b61333c565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561331a5750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561332f5761332a858583613c8e565b61333b565b61333a858583613ad0565b5b5b5b5b5050505050565b60008383111582906133f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133b757808201518184015260208101905061339c565b50505050905090810190601f1680156133e45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060006134a188613f76565b9150915060006134af6135ff565b905060008060006134c18c8686613fb6565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b6000808314156134f85760009050613565565b600082840290508284828161350957fe5b0414613560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061444a6021913960400191505060405180910390fd5b809150505b92915050565b60006135ad83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614014565b905092915050565b60006135f783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613345565b905092915050565b600080600061360c6140da565b91509150613623818361356b90919063ffffffff16565b9250505090565b600080600080600061363b8661348d565b9450945094509450945061369786600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061372c85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137c184600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061380e838261436b565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061388e8661348d565b945094509450945094506138ea85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061397f82600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a1484600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a61838261436b565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613ae18661348d565b94509450945094509450613b3d85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bd284600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c1f838261436b565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613c9f8661348d565b94509450945094509450613cfb86600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d9085600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135b590919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e2582600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613eba84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461340590919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f07838261436b565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000613f906010548561356b90919063ffffffff16565b90506000613fa782866135b590919063ffffffff16565b90508082935093505050915091565b600080600080613fcf85886134e590919063ffffffff16565b90506000613fe686886134e590919063ffffffff16565b90506000613ffd82846135b590919063ffffffff16565b905082818395509550955050505093509350939050565b600080831182906140c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561408557808201518184015260208101905061406a565b50505050905090810190601f1680156140b25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816140cc57fe5b049050809150509392505050565b6000806000600d5490506000600c54905060005b600b8054905081101561432e578260086000600b848154811061410d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806141f457508160096000600b848154811061418c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561420b57600d54600c5494509450505050614367565b61429460086000600b848154811061421f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846135b590919063ffffffff16565b925061431f60096000600b84815481106142aa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836135b590919063ffffffff16565b915080806001019150506140ee565b50614346600c54600d5461356b90919063ffffffff16565b82101561435e57600d54600c54935093505050614367565b81819350935050505b9091565b61438082600d546135b590919063ffffffff16565b600d8190555061439b81600e5461340590919063ffffffff16565b600e81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73546865205461782052657475726e656420746f20486f6c64657273206e6f74206c657373207468616e20302e3125536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365546865205461782052657475726e656420746f20486f6c64657273206e6f74206d6f7265207468616e20312545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c97ea5e3642c80bc1f11addf7df812b0cee1daf56ceb4d862b613c7bf35bfd4664736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000279489ecd26941df9098f53f4ea81f4bc160d9d8
-----Decoded View---------------
Arg [0] : _feeDecimals (uint8): 0
Arg [1] : _feePercentage (uint32): 0
Arg [2] : _presale (address): 0x279489eCD26941DF9098F53f4ea81F4BC160D9d8
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 000000000000000000000000279489ecd26941df9098f53f4ea81f4bc160d9d8
Deployed Bytecode Sourcemap
26376:19487:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35257:8;;;26376:19487;;;;28336:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30517:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26705:115;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29411:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31160:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26872:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42347:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29263:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31890:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26827:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44311:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38642:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34841:182;;;;;;;;;;;;;:::i;:::-;;39326:345;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29569:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2096:148;;;;;;;;;;;;;:::i;:::-;;37186:96;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1454:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43926:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27527:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28538:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27398:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32611:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29981:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44753:257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27367:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30219:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38980:338;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45018:343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2399:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27567:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45369:489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26948:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27609:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28336:83;28373:13;28406:5;28399:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28336:83;:::o;30517:169::-;30600:4;30617:39;30626:12;:10;:12::i;:::-;30640:7;30649:6;30617:8;:39::i;:::-;30674:4;30667:11;;30517:169;;;;:::o;26705:115::-;26777:42;26705:115;:::o;29411:95::-;29464:7;29491;;29484:14;;29411:95;:::o;31160:321::-;31266:4;31283:36;31293:6;31301:9;31312:6;31283:9;:36::i;:::-;31330:121;31339:6;31347:12;:10;:12::i;:::-;31361:89;31399:6;31361:89;;;;;;;;;;;;;;;;;:11;:19;31373:6;31361:19;;;;;;;;;;;;;;;:33;31381:12;:10;:12::i;:::-;31361:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;31330:8;:121::i;:::-;31469:4;31462:11;;31160:321;;;;;:::o;26872:69::-;;;;;;;;;;;;;:::o;42347:256::-;1676:12;:10;:12::i;:::-;1666:22;;:6;;;;;;;;;;:22;;;1658:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42437:3:::1;42432:1;:8;;42424:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42513:4;42508:1;:9;;42500:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42594:1;42579:12;:16;;;;42347:256:::0;:::o;29263:83::-;29304:5;29329:9;;;;;;;;;;;29322:16;;29263:83;:::o;31890:218::-;31978:4;31995:83;32004:12;:10;:12::i;:::-;32018:7;32027:50;32066:10;32027:11;:25;32039:12;:10;:12::i;:::-;32027:25;;;;;;;;;;;;;;;:34;32053:7;32027:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;31995:8;:83::i;:::-;32096:4;32089:11;;31890:218;;;;:::o;26827:38::-;;;:::o;44311:434::-;44401:7;44440;;44429;:18;;44421:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44499:17;44494:244;;44534:15;44557:19;44568:7;44557:10;:19::i;:::-;44533:43;;;;;;44598:7;44591:14;;;;;44494:244;44640:23;44670:19;44681:7;44670:10;:19::i;:::-;44638:51;;;;;;44711:15;44704:22;;;44311:434;;;;;:::o;38642:269::-;38779:14;38815:88;38890:1;38874:12;38866:21;;:25;38861:2;:31;38815:27;38827:14;38815:27;;:7;:11;;:27;;;;:::i;:::-;:31;;:88;;;;:::i;:::-;38806:97;;38642:269;;;;;:::o;34841:182::-;25419:1;26025:7;;:19;;26017:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25419:1;26158:7;:18;;;;34931:7:::1;;;;;;;;;;;34917:21;;:10;:21;;;34908:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35010:5;34993:14;;:22;;;;;;;;;;;;;;;;;;25375:1:::0;26337:7;:22;;;;34841:182::o;39326:345::-;1676:12;:10;:12::i;:::-;1666:22;;:6;;;;;;;;;;:22;;;1658:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25419:1:::1;26025:7;;:19;;26017:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25419:1;26158:7;:18;;;;39453:1:::2;39438:17;;:3;:17;;;;39430:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;39502:21;39542:6;39502:47;;39583:33;39608:7;39583:20;;:24;;:33;;;;:::i;:::-;39560:20;:56;;;;39629:5;:14;;;39644:9;;;;;;;;;;;39655:7;39629:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;26189:1;25375::::1;26337:7:::0;:22:::1;;;;39326:345:::0;;;:::o;29569:199::-;29635:7;29660:11;:20;29672:7;29660:20;;;;;;;;;;;;;;;;;;;;;;;;;29656:49;;;29689:7;:16;29697:7;29689:16;;;;;;;;;;;;;;;;29682:23;;;;29656:49;29723:37;29743:7;:16;29751:7;29743:16;;;;;;;;;;;;;;;;29723:19;:37::i;:::-;29716:44;;29569:199;;;;:::o;2096:148::-;1676:12;:10;:12::i;:::-;1666:22;;:6;;;;;;;;;;:22;;;1658:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2203:1:::1;2166:40;;2187:6;::::0;::::1;;;;;;;;2166:40;;;;;;;;;;;;2234:1;2217:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2096:148::o:0;37186:96::-;37234:7;37260:14;;37253:21;;37186:96;:::o;1454:79::-;1492:7;1519:6;;;;;;;;;;;1512:13;;1454:79;:::o;43926:377::-;43979:14;43996:12;:10;:12::i;:::-;43979:29;;44028:11;:19;44040:6;44028:19;;;;;;;;;;;;;;;;;;;;;;;;;44027:20;44019:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44108:15;44131:19;44142:7;44131:10;:19::i;:::-;44107:43;;;;;;44179:28;44199:7;44179;:15;44187:6;44179:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44161:7;:15;44169:6;44161:15;;;;;;;;;;;;;;;:46;;;;44228:20;44240:7;44228;;:11;;:20;;;;:::i;:::-;44218:7;:30;;;;44272:23;44287:7;44272:10;;:14;;:23;;;;:::i;:::-;44259:10;:36;;;;43926:377;;;:::o;27527:33::-;;;;:::o;28538:87::-;28577:13;28610:7;28603:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28538:87;:::o;27398:27::-;;;;;;;;;;;;;:::o;32611:269::-;32704:4;32721:129;32730:12;:10;:12::i;:::-;32744:7;32753:96;32792:15;32753:96;;;;;;;;;;;;;;;;;:11;:25;32765:12;:10;:12::i;:::-;32753:25;;;;;;;;;;;;;;;:34;32779:7;32753:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;32721:8;:129::i;:::-;32868:4;32861:11;;32611:269;;;;:::o;29981:175::-;30067:4;30084:42;30094:12;:10;:12::i;:::-;30108:9;30119:6;30084:9;:42::i;:::-;30144:4;30137:11;;29981:175;;;;:::o;44753:257::-;44819:7;44858;;44847;:18;;44839:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44927:19;44950:10;:8;:10::i;:::-;44927:33;;44978:24;44990:11;44978:7;:11;;:24;;;;:::i;:::-;44971:31;;;44753:257;;;:::o;27367:24::-;;;;;;;;;;;;;:::o;30219:151::-;30308:7;30335:11;:18;30347:5;30335:18;;;;;;;;;;;;;;;:27;30354:7;30335:27;;;;;;;;;;;;;;;;30328:34;;30219:151;;;;:::o;38980:338::-;1676:12;:10;:12::i;:::-;1666:22;;:6;;;;;;;;;;:22;;;1658:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25419:1:::1;26025:7;;:19;;26017:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25419:1;26158:7;:18;;;;39141:1:::2;39123:14;:19;;;;39115:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;39201:12;39187:11;;:26;;;;;;;;;;;;;;;;;;39240:14;39224:13;;:30;;;;;;;;;;;;;;;;;;39270:40;39281:12;39295:14;39270:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;25375:1:::1;26337:7:::0;:22:::1;;;;38980:338:::0;;:::o;45018:343::-;1676:12;:10;:12::i;:::-;1666:22;;:6;;;;;;;;;;:22;;;1658:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25419:1:::1;26025:7;;:19;;26017:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25419:1;26158:7;:18;;;;45111:11:::2;:20;45123:7;45111:20;;;;;;;;;;;;;;;;;;;;;;;;;45110:21;45102:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;45196:1;45177:7;:16;45185:7;45177:16;;;;;;;;;;;;;;;;:20;45174:108;;;45233:37;45253:7;:16;45261:7;45253:16;;;;;;;;;;;;;;;;45233:19;:37::i;:::-;45214:7;:16;45222:7;45214:16;;;;;;;;;;;;;;;:56;;;;45174:108;45315:4;45292:11;:20;45304:7;45292:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;45330:9;45345:7;45330:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25375:1:::1;26337:7:::0;:22:::1;;;;45018:343:::0;:::o;2399:244::-;1676:12;:10;:12::i;:::-;1666:22;;:6;;;;;;;;;;:22;;;1658:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2508:1:::1;2488:22;;:8;:22;;;;2480:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2598:8;2569:38;;2590:6;::::0;::::1;;;;;;;;2569:38;;;;;;;;;;;;2627:8;2618:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2399:244:::0;:::o;27567:35::-;;;;:::o;45369:489::-;1676:12;:10;:12::i;:::-;1666:22;;:6;;;;;;;;;;:22;;;1658:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25419:1:::1;26025:7;;:19;;26017:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25419:1;26158:7;:18;;;;45461:11:::2;:20;45473:7;45461:20;;;;;;;;;;;;;;;;;;;;;;;;;45453:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;45529:9;45524:327;45548:9;:16;;;;45544:1;:20;45524:327;;;45606:7;45590:23;;:9;45600:1;45590:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;45586:254;;;45649:9;45678:1;45659:9;:16;;;;:20;45649:31;;;;;;;;;;;;;;;;;;;;;;;;;45634:9;45644:1;45634:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45718:1;45699:7;:16;45707:7;45699:16;;;;;;;;;;;;;;;:20;;;;45761:5;45738:11;:20;45750:7;45738:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;45785:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45819:5;;45586:254;45566:3;;;;;;;45524:327;;;;25375:1:::1;26337:7:::0;:22:::1;;;;45369:489:::0;:::o;26948:22::-;;;;;;;;;;;;;:::o;27609:33::-;;;;:::o;92:106::-;145:15;180:10;173:17;;92:106;:::o;35711:346::-;35830:1;35813:19;;:5;:19;;;;35805:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35911:1;35892:21;;:7;:21;;;;35884:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35995:6;35965:11;:18;35977:5;35965:18;;;;;;;;;;;;;;;:27;35984:7;35965:27;;;;;;;;;;;;;;;:36;;;;36033:7;36017:32;;36026:5;36017:32;;;36042:6;36017:32;;;;;;;;;;;;;;;;;;35711:346;;;:::o;32884:1949::-;33005:14;;;;;;;;;;;33001:234;;;33053:13;33039:28;;:2;:28;;;:62;;;;26777:42;33071:30;;:2;:30;;;33039:62;:123;;;;33119:42;33105:57;;:2;:57;;;33039:123;33035:192;;;33178:8;;;33035:192;33001:234;33249:20;33272:98;33299:6;33320:11;;;;;;;;;;;33346:13;;;;;;;;;;;33272:12;:98::i;:::-;33249:121;;33400:1;33385:12;:16;33381:622;;;33417:11;:17;33429:4;33417:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;33439:11;:15;33451:2;33439:15;;;;;;;;;;;;;;;;;;;;;;;;;33438:16;33417:37;33413:583;;;33472:52;33494:4;33500:9;;;;;;;;;;;33511:12;33472:21;:52::i;:::-;33413:583;;;33547:11;:17;33559:4;33547:17;;;;;;;;;;;;;;;;;;;;;;;;;33546:18;:37;;;;;33568:11;:15;33580:2;33568:15;;;;;;;;;;;;;;;;;;;;;;;;;33546:37;33542:454;;;33601:50;33621:4;33627:9;;;;;;;;;;;33638:12;33601:19;:50::i;:::-;33542:454;;;33674:11;:17;33686:4;33674:17;;;;;;;;;;;;;;;;;;;;;;;;;33673:18;:38;;;;;33696:11;:15;33708:2;33696:15;;;;;;;;;;;;;;;;;;;;;;;;;33695:16;33673:38;33669:327;;;33728:48;33746:4;33752:9;;;;;;;;;;;33763:12;33728:17;:48::i;:::-;33669:327;;;33798:11;:17;33810:4;33798:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;33819:11;:15;33831:2;33819:15;;;;;;;;;;;;;;;;;;;;;;;;;33798:36;33794:202;;;33851:52;33873:4;33879:9;;;;;;;;;;;33890:12;33851:21;:52::i;:::-;33794:202;;;33936:48;33954:4;33960:9;;;;;;;;;;;33971:12;33936:17;:48::i;:::-;33794:202;33669:327;33542:454;33413:583;33381:622;34033:25;34045:12;34033:7;;:11;;:25;;;;:::i;:::-;34023:7;:35;;;;34186:24;34213;34224:12;34213:6;:10;;:24;;;;:::i;:::-;34186:51;;34262:11;:17;34274:4;34262:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;34284:11;:15;34296:2;34284:15;;;;;;;;;;;;;;;;;;;;;;;;;34283:16;34262:37;34258:566;;;34316:49;34338:4;34344:2;34348:16;34316:21;:49::i;:::-;34258:566;;;34388:11;:17;34400:4;34388:17;;;;;;;;;;;;;;;;;;;;;;;;;34387:18;:37;;;;;34409:11;:15;34421:2;34409:15;;;;;;;;;;;;;;;;;;;;;;;;;34387:37;34383:441;;;34441:47;34461:4;34467:2;34471:16;34441:19;:47::i;:::-;34383:441;;;34511:11;:17;34523:4;34511:17;;;;;;;;;;;;;;;;;;;;;;;;;34510:18;:38;;;;;34533:11;:15;34545:2;34533:15;;;;;;;;;;;;;;;;;;;;;;;;;34532:16;34510:38;34506:318;;;34565:45;34583:4;34589:2;34593:16;34565:17;:45::i;:::-;34506:318;;;34632:11;:17;34644:4;34632:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;34653:11;:15;34665:2;34653:15;;;;;;;;;;;;;;;;;;;;;;;;;34632:36;34628:196;;;34685:49;34707:4;34713:2;34717:16;34685:21;:49::i;:::-;34628:196;;;34767:45;34785:4;34791:2;34795:16;34767:17;:45::i;:::-;34628:196;34506:318;34383:441;34258:566;32884:1949;;;;;:::o;4395:192::-;4481:7;4514:1;4509;:6;;4517:12;4501:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4541:9;4557:1;4553;:5;4541:17;;4578:1;4571:8;;;4395:192;;;;;:::o;3492:181::-;3550:7;3570:9;3586:1;3582;:5;3570:17;;3611:1;3606;:6;;3598:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3664:1;3657:8;;;3492:181;;;;:::o;41927:412::-;41986:7;41995;42004;42013;42022;42043:23;42068:12;42084:21;42097:7;42084:12;:21::i;:::-;42042:63;;;;42116:19;42139:10;:8;:10::i;:::-;42116:33;;42161:15;42178:23;42203:12;42219:39;42231:7;42240:4;42246:11;42219;:39::i;:::-;42160:98;;;;;;42277:7;42286:15;42303:4;42309:15;42326:4;42269:62;;;;;;;;;;;;;;;;41927:412;;;;;;;:::o;4846:471::-;4904:7;5154:1;5149;:6;5145:47;;;5179:1;5172:8;;;;5145:47;5204:9;5220:1;5216;:5;5204:17;;5249:1;5244;5240;:5;;;;;;:10;5232:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5308:1;5301:8;;;4846:471;;;;;:::o;5793:132::-;5851:7;5878:39;5882:1;5885;5878:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5871:46;;5793:132;;;;:::o;3956:136::-;4014:7;4041:43;4045:1;4048;4041:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4034:50;;3956:136;;;;:::o;43194:163::-;43235:7;43256:15;43273;43292:19;:17;:19::i;:::-;43255:56;;;;43329:20;43341:7;43329;:11;;:20;;;;:::i;:::-;43322:27;;;;43194:163;:::o;40664:509::-;40767:15;40784:23;40809:12;40823:23;40848:12;40864:19;40875:7;40864:10;:19::i;:::-;40766:117;;;;;;;;;;40912:28;40932:7;40912;:15;40920:6;40912:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40894:7;:15;40902:6;40894:15;;;;;;;;;;;;;;;:46;;;;40969:28;40989:7;40969;:15;40977:6;40969:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40951:7;:15;40959:6;40951:15;;;;;;;;;;;;;;;:46;;;;41029:39;41052:15;41029:7;:18;41037:9;41029:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41008:7;:18;41016:9;41008:18;;;;;;;;;;;;;;;:60;;;;41079:26;41094:4;41100;41079:14;:26::i;:::-;41138:9;41121:44;;41130:6;41121:44;;;41149:15;41121:44;;;;;;;;;;;;;;;;;;40664:509;;;;;;;;:::o;40135:521::-;40236:15;40253:23;40278:12;40292:23;40317:12;40333:19;40344:7;40333:10;:19::i;:::-;40235:117;;;;;;;;;;40381:28;40401:7;40381;:15;40389:6;40381:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40363:7;:15;40371:6;40363:15;;;;;;;;;;;;;;;:46;;;;40441:39;40464:15;40441:7;:18;40449:9;40441:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40420:7;:18;40428:9;40420:18;;;;;;;;;;;;;;;:60;;;;40512:39;40535:15;40512:7;:18;40520:9;40512:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40491:7;:18;40499:9;40491:18;;;;;;;;;;;;;;;:60;;;;40562:26;40577:4;40583;40562:14;:26::i;:::-;40621:9;40604:44;;40613:6;40604:44;;;40632:15;40604:44;;;;;;;;;;;;;;;;;;40135:521;;;;;;;;:::o;39679:448::-;39778:15;39795:23;39820:12;39834:23;39859:12;39875:19;39886:7;39875:10;:19::i;:::-;39777:117;;;;;;;;;;39923:28;39943:7;39923;:15;39931:6;39923:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39905:7;:15;39913:6;39905:15;;;;;;;;;;;;;;;:46;;;;39983:39;40006:15;39983:7;:18;39991:9;39983:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;39962:7;:18;39970:9;39962:18;;;;;;;;;;;;;;;:60;;;;40033:26;40048:4;40054;40033:14;:26::i;:::-;40092:9;40075:44;;40084:6;40075:44;;;40103:15;40075:44;;;;;;;;;;;;;;;;;;39679:448;;;;;;;;:::o;41181:580::-;41284:15;41301:23;41326:12;41340:23;41365:12;41381:19;41392:7;41381:10;:19::i;:::-;41283:117;;;;;;;;;;41429:28;41449:7;41429;:15;41437:6;41429:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41411:7;:15;41419:6;41411:15;;;;;;;;;;;;;;;:46;;;;41486:28;41506:7;41486;:15;41494:6;41486:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41468:7;:15;41476:6;41468:15;;;;;;;;;;;;;;;:46;;;;41546:39;41569:15;41546:7;:18;41554:9;41546:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41525:7;:18;41533:9;41525:18;;;;;;;;;;;;;;;:60;;;;41617:39;41640:15;41617:7;:18;41625:9;41617:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41596:7;:18;41604:9;41596:18;;;;;;;;;;;;;;;:60;;;;41667:26;41682:4;41688;41667:14;:26::i;:::-;41726:9;41709:44;;41718:6;41709:44;;;41737:15;41709:44;;;;;;;;;;;;;;;;;;41181:580;;;;;;;;:::o;42611:233::-;42672:7;42681;42701:12;42716:25;42728:12;;42716:7;:11;;:25;;;;:::i;:::-;42701:40;;42752:23;42778:17;42790:4;42778:7;:11;;:17;;;;:::i;:::-;42752:43;;42814:15;42831:4;42806:30;;;;;;42611:233;;;:::o;42852:334::-;42947:7;42956;42965;42985:15;43003:24;43015:11;43003:7;:11;;:24;;;;:::i;:::-;42985:42;;43038:12;43053:21;43062:11;43053:4;:8;;:21;;;;:::i;:::-;43038:36;;43085:23;43111:17;43123:4;43111:7;:11;;:17;;;;:::i;:::-;43085:43;;43147:7;43156:15;43173:4;43139:39;;;;;;;;;42852:334;;;;;;;:::o;6421:278::-;6507:7;6539:1;6535;:5;6542:12;6527:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6566:9;6582:1;6578;:5;;;;;;6566:17;;6690:1;6683:8;;;6421:278;;;;;:::o;43365:555::-;43415:7;43424;43444:15;43462:7;;43444:25;;43480:15;43498:7;;43480:25;;43521:9;43516:289;43540:9;:16;;;;43536:1;:20;43516:289;;;43606:7;43582;:21;43590:9;43600:1;43590:12;;;;;;;;;;;;;;;;;;;;;;;;;43582:21;;;;;;;;;;;;;;;;:31;:66;;;;43641:7;43617;:21;43625:9;43635:1;43625:12;;;;;;;;;;;;;;;;;;;;;;;;;43617:21;;;;;;;;;;;;;;;;:31;43582:66;43578:97;;;43658:7;;43667;;43650:25;;;;;;;;;43578:97;43700:34;43712:7;:21;43720:9;43730:1;43720:12;;;;;;;;;;;;;;;;;;;;;;;;;43712:21;;;;;;;;;;;;;;;;43700:7;:11;;:34;;;;:::i;:::-;43690:44;;43759:34;43771:7;:21;43779:9;43789:1;43779:12;;;;;;;;;;;;;;;;;;;;;;;;;43771:21;;;;;;;;;;;;;;;;43759:7;:11;;:34;;;;:::i;:::-;43749:44;;43558:3;;;;;;;43516:289;;;;43829:20;43841:7;;43829;;:11;;:20;;;;:::i;:::-;43819:7;:30;43815:61;;;43859:7;;43868;;43851:25;;;;;;;;43815:61;43895:7;43904;43887:25;;;;;;43365:555;;;:::o;41769:150::-;41850:17;41862:4;41850:7;;:11;;:17;;;;:::i;:::-;41840:7;:27;;;;41891:20;41906:4;41891:10;;:14;;:20;;;;:::i;:::-;41878:10;:33;;;;41769:150;;:::o
Swarm Source
ipfs://c97ea5e3642c80bc1f11addf7df812b0cee1daf56ceb4d862b613c7bf35bfd46
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.