ERC-20
Overview
Max Total Supply
100,000,000 OTSea
Holders
2,837
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.157550536056969812 OTSeaValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OTSeaERC20
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* [.... [... [...... [.. .. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [. [.. [.. [.. [.. [.. [.. [.. [..... [..[.. [.. [.. [.. [.. [.. [..[. [.. [.. [.... [.. [.. .. [.... [.. [... ERC20 Token. https://otsea.xyz/ https://t.me/OTSeaPortal https://twitter.com/OTSeaERC20 */ // SPDX-License-Identifier: MIT import "./OTSeaDividends.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; pragma solidity ^0.8.19; contract OTSeaERC20 is Ownable, ERC20 { uint256 public maxWallet; address public uniswapV2Pair; IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); OTSeaDividends public dividends; uint256 SUPPLY = 100_000_000 * 10 ** 18; uint256 snipeFee = 30; uint256 totalFee = 5; bool private inSwap = false; address public marketingWallet; address public dividendsWallet; address payable public opWallet1; address payable public opWallet2; uint256 public openTradingBlock; mapping(address => uint256) public receiveBlock; uint256 public swapAt = SUPPLY / 1000; //0.1% constructor( address payable _opWallet1, address payable _opWallet2, address _dividendsWallet, address _marketingWallet ) payable ERC20("OTSea", "OTSea") { _mint(_marketingWallet, (SUPPLY * 100) / 1000); _mint(address(this), (SUPPLY * 900) / 1000); maxWallet = SUPPLY; opWallet1 = _opWallet1; opWallet2 = _opWallet2; marketingWallet = _marketingWallet; dividendsWallet = _dividendsWallet; dividends = new OTSeaDividends(); dividends.excludeFromDividends(address(0)); dividends.excludeFromDividends(address(dividends)); dividends.excludeFromDividends(address(this)); dividends.excludeFromDividends(owner()); } receive() external payable {} function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function updateDividends(address _dividends) external onlyOwner { dividends = OTSeaDividends(payable(_dividends)); dividends.excludeFromDividends(address(0)); dividends.excludeFromDividends(address(dividends)); dividends.excludeFromDividends(address(this)); dividends.excludeFromDividends(owner()); dividends.excludeFromDividends(uniswapV2Pair); dividends.excludeFromDividends(address(router)); } function updateFee(uint256 _totalFee) external onlyOwner { require(_totalFee <= 5, "Fee can only be lowered"); totalFee = _totalFee; } function updateMaxHoldingPercent(uint256 percent) public onlyOwner { require(percent >= 1 && percent <= 100, "invalid percent"); maxWallet = (SUPPLY * percent) / 100; } function updateSwapAt(uint256 value) external onlyOwner { require(value <= SUPPLY / 50); swapAt = value; } function stats( address account ) external view returns (uint256 withdrawableDividends, uint256 totalDividends) { (, withdrawableDividends, totalDividends) = dividends.getAccount(account); } function claim() external { dividends.claim(msg.sender); } function enterTheSea() external onlyOwner { address pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _approve(address(this), address(router), balanceOf(address(this))); router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); uniswapV2Pair = pair; openTradingBlock = block.number; dividends.excludeFromDividends(address(router)); dividends.excludeFromDividends(pair); updateMaxHoldingPercent(1); } function _transfer(address from, address to, uint256 amount) internal override { if (uniswapV2Pair == address(0)) { require( from == address(this) || from == address(0) || from == owner() || to == owner(), "Not started" ); super._transfer(from, to, amount); return; } if ( from == uniswapV2Pair && to != address(this) && to != owner() && to != address(router) ) { require(super.balanceOf(to) + amount <= maxWallet, "max wallet"); } uint256 swapAmount = balanceOf(address(this)); if (swapAmount > swapAt) { swapAmount = swapAt; } if (swapAt > 0 && swapAmount == swapAt && !inSwap && from != uniswapV2Pair) { inSwap = true; swapTokensForEth(swapAmount); uint256 balance = address(this).balance; if (balance > 0) { withdraw(balance); } inSwap = false; } uint256 fee; if (block.number <= openTradingBlock + 4 && from == uniswapV2Pair) { require(!isContract(to)); fee = snipeFee; } else if (totalFee > 0) { fee = totalFee; } if (fee > 0 && from != address(this) && from != owner() && from != address(router)) { uint256 feeTokens = (amount * fee) / 100; amount -= feeTokens; super._transfer(from, address(this), feeTokens); } super._transfer(from, to, amount); dividends.updateBalance(payable(from)); dividends.updateBalance(payable(to)); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendFunds(address user, uint256 value) private { if (value > 0) { (bool success, ) = user.call{value: value}(""); success; } } function withdraw(uint256 amount) private { uint256 toDividends = amount / 5; uint256 toOp1 = amount / 10; uint256 toOp2 = amount / 10; uint256 toMarketing = amount - toDividends - toOp1 - toOp2; sendFunds(opWallet1, toOp1); sendFunds(opWallet2, toOp2); sendFunds(marketingWallet, toMarketing); sendFunds(dividendsWallet, toDividends); } function closeDistribution() external onlyOwner { dividends.close(); } function collect() external onlyOwner { dividends.collect(); } function setDividendsWallet(address payable _dividendsWallet) external { require(msg.sender == dividendsWallet, "Not authorized"); dividendsWallet = _dividendsWallet; } function setMarketingWallet(address payable _marketingWallet) external { require(msg.sender == marketingWallet, "Not authorized"); marketingWallet = _marketingWallet; } function setOpWallet1(address payable _opWallet1) external { require(msg.sender == opWallet1, "Not authorized"); opWallet1 = _opWallet1; } function setOpWallet2(address payable _opWallet2) external { require(msg.sender == opWallet2, "Not authorized"); opWallet2 = _opWallet2; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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. */ abstract 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 default value returned by this function, unless * it's overridden. * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.5.0; 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.6.2; 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); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
/* [.... [... [...... [.. .. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [.. [. [.. [.. [.. [.. [.. [.. [.. [..... [..[.. [.. [.. [.. [.. [.. [..[. [.. [.. [.... [.. [.. .. [.... [.. [... OTSea Dividends Tracker Token. https://otsea.xyz/ https://t.me/OTSeaPortal https://twitter.com/OTSeaERC20 */ // SPDX-License-Identifier: MIT import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./SafeMath.sol"; pragma solidity ^0.8.19; contract DividendPayingToken is ERC20 { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 internal constant magnitude = 2 ** 128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; event DividendsDistributed(address user, uint256 amount); event DividendWithdrawn(address user, uint256 amount); constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} /// @dev Distributes dividends whenever ether is paid to this contract. receive() external payable { distributeDividends(); } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public payable virtual { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed.add(msg.value); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); emit DividendWithdrawn(user, _withdrawableDividend); (bool success, ) = user.call{value: _withdrawableDividend, gas: 3000}(""); if (!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view returns (uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view returns (uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view returns (uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view returns (uint256) { return magnifiedDividendPerShare .mul(balanceOf(_owner)) .toInt256Safe() .add(magnifiedDividendCorrections[_owner]) .toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer(address from, address to, uint256 value) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account].sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account].add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if (newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if (newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } contract OTSeaDividends is DividendPayingToken, Ownable { using SafeMath for uint256; using SafeMathInt for int256; IERC20 token; mapping(address => bool) public excludedFromDividends; uint256 public closeTime; uint256 public constant claimGracePeriod = 60 days; event ExcludeFromDividends(address indexed account); event Claim(address indexed account, uint256 amount, bool indexed automatic); constructor() DividendPayingToken("OTSEA_Dividends", "OTSEA_Dividends") { token = IERC20(msg.sender); } bool noWarning; function _transfer(address, address, uint256) internal override { require(false, "No transfers allowed"); noWarning = noWarning; } function withdrawDividend() public override { require( false, "withdrawDividend disabled. Use the 'claim' function on the main token contract." ); noWarning = noWarning; } function claim(address account) external onlyOwner { require(closeTime == 0 || block.timestamp < closeTime + claimGracePeriod, "closed"); _withdrawDividendOfUser(payable(account)); } function excludeFromDividends(address account) external onlyOwner { excludedFromDividends[account] = true; _setBalance(account, 0); emit ExcludeFromDividends(account); } function getAccount( address _account ) public view returns (address account, uint256 withdrawableDividends, uint256 totalDividends) { account = _account; withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); } function updateBalance(address payable account) external { if (excludedFromDividends[account]) { return; } _setBalance(account, token.balanceOf(account)); } //If the dividend contract needs to be updated, we can close //this one, and let people claim for a month //After that is over, we can take the remaining funds and //use for the project function close() external onlyOwner { require(closeTime == 0, "Contract was already closed."); closeTime = block.timestamp; } //Only allows funds to be taken if contract has been closed for a month function collect() external onlyOwner { require( closeTime >= 0 && block.timestamp >= closeTime + claimGracePeriod, "Cannot collect yet." ); (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"_opWallet1","type":"address"},{"internalType":"address payable","name":"_opWallet2","type":"address"},{"internalType":"address","name":"_dividendsWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"closeDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collect","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":[],"name":"dividends","outputs":[{"internalType":"contract OTSeaDividends","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enterTheSea","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"opWallet1","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"opWallet2","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"receiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_dividendsWallet","type":"address"}],"name":"setDividendsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_opWallet1","type":"address"}],"name":"setOpWallet1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_opWallet2","type":"address"}],"name":"setOpWallet2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"stats","outputs":[{"internalType":"uint256","name":"withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"totalDividends","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_dividends","type":"address"}],"name":"updateDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"updateMaxHoldingPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateSwapAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a52b7d2dcc80cd2e4000000600955601e600a556005600b556000600c60006101000a81548160ff0219169083151502179055506103e8600954620000919190620008aa565b601255604051620080dd380380620080dd8339818101604052810190620000b9919062000991565b6040518060400160405280600581526020017f4f545365610000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f545365610000000000000000000000000000000000000000000000000000008152506200014562000139620005c760201b60201c565b620005cf60201b60201c565b816004908162000156919062000c73565b50806005908162000168919062000c73565b5050506200019c816103e8606460095462000184919062000d5a565b620001909190620008aa565b6200069360201b60201c565b620001ce306103e8610384600954620001b6919062000d5a565b620001c29190620008aa565b6200069360201b60201c565b60095460068190555083600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051620002e99062000834565b604051809103906000f08015801562000306573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db060006040518263ffffffff1660e01b8152600401620003a5919062000db6565b600060405180830381600087803b158015620003c057600080fd5b505af1158015620003d5573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040162000458919062000db6565b600060405180830381600087803b1580156200047357600080fd5b505af115801562000488573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b8152600401620004e9919062000db6565b600060405180830381600087803b1580156200050457600080fd5b505af115801562000519573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db06200056b6200080160201b60201c565b6040518263ffffffff1660e01b815260040162000589919062000db6565b600060405180830381600087803b158015620005a457600080fd5b505af1158015620005b9573d6000803e3d6000fd5b505050505050505062000ebf565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000705576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fc9062000e34565b60405180910390fd5b62000719600083836200082a60201b60201c565b80600360008282546200072d919062000e56565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007e1919062000ea2565b60405180910390a3620007fd600083836200082f60201b60201c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b6133db8062004d0283390190565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008b78262000842565b9150620008c48362000842565b925082620008d757620008d66200084c565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200091482620008e7565b9050919050565b620009268162000907565b81146200093257600080fd5b50565b60008151905062000946816200091b565b92915050565b60006200095982620008e7565b9050919050565b6200096b816200094c565b81146200097757600080fd5b50565b6000815190506200098b8162000960565b92915050565b60008060008060808587031215620009ae57620009ad620008e2565b5b6000620009be8782880162000935565b9450506020620009d18782880162000935565b9350506040620009e4878288016200097a565b9250506060620009f7878288016200097a565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a8557607f821691505b60208210810362000a9b5762000a9a62000a3d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ac6565b62000b11868362000ac6565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b5462000b4e62000b488462000842565b62000b29565b62000842565b9050919050565b6000819050919050565b62000b708362000b33565b62000b8862000b7f8262000b5b565b84845462000ad3565b825550505050565b600090565b62000b9f62000b90565b62000bac81848462000b65565b505050565b5b8181101562000bd45762000bc860008262000b95565b60018101905062000bb2565b5050565b601f82111562000c235762000bed8162000aa1565b62000bf88462000ab6565b8101602085101562000c08578190505b62000c2062000c178562000ab6565b83018262000bb1565b50505b505050565b600082821c905092915050565b600062000c486000198460080262000c28565b1980831691505092915050565b600062000c63838362000c35565b9150826002028217905092915050565b62000c7e8262000a03565b67ffffffffffffffff81111562000c9a5762000c9962000a0e565b5b62000ca6825462000a6c565b62000cb382828562000bd8565b600060209050601f83116001811462000ceb576000841562000cd6578287015190505b62000ce2858262000c55565b86555062000d52565b601f19841662000cfb8662000aa1565b60005b8281101562000d255784890151825560018201915060208501945060208101905062000cfe565b8683101562000d45578489015162000d41601f89168262000c35565b8355505b6001600288020188555050505b505050505050565b600062000d678262000842565b915062000d748362000842565b925082820262000d848162000842565b9150828204841483151762000d9e5762000d9d6200087b565b5b5092915050565b62000db0816200094c565b82525050565b600060208201905062000dcd600083018462000da5565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e1c601f8362000dd3565b915062000e298262000de4565b602082019050919050565b6000602082019050818103600083015262000e4f8162000e0d565b9050919050565b600062000e638262000842565b915062000e708362000842565b925082820190508082111562000e8b5762000e8a6200087b565b5b92915050565b62000e9c8162000842565b82525050565b600060208201905062000eb9600083018462000e91565b92915050565b608051613de162000f2160003960008181610b0601528181610bb101528181610ca601528181610cd501528181610e150152818161190b01528181612106015281816123d9015281816129eb01528181612acc0152612af30152613de16000f3fe60806040526004361061021e5760003560e01c80636abfe8461161012357806395d89b41116100ab578063e2c8dd341161006f578063e2c8dd34146107cf578063e5225381146107fa578063f2fde38b14610811578063f8b45b051461083a578063f8f2bfce1461086557610225565b806395d89b41146106c4578063a1972fc4146106ef578063a457c2d714610718578063a9059cbb14610755578063dd62ed3e1461079257610225565b8063786c5065116100f2578063786c5065146105f257806378831b36146106095780638bcdcbf3146106325780638da5cb5b146106705780639012c4a81461069b57610225565b80636abfe8461461054a57806370a0823114610573578063715018a6146105b057806375f0a874146105c757610225565b806339509351116101a65780635a954293116101755780635a954293146104775780635c705340146104a25780635d098b38146104cd57806362e9ddd4146104f657806363807c061461052157610225565b806339509351146103e157806349bd5a5e1461041e5780634c8faa00146104495780634e71d92d1461046057610225565b806318160ddd116101ed57806318160ddd146102fa57806323b872dd146103255780632b804d5614610362578063313ce5671461038b57806335d97405146103b657610225565b806306fdde031461022a57806308aa269514610255578063095ea7b314610280578063098fec39146102bd57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f61088e565b60405161024c9190612dc1565b60405180910390f35b34801561026157600080fd5b5061026a610920565b6040516102779190612dfc565b60405180910390f35b34801561028c57600080fd5b506102a760048036038101906102a29190612ea6565b610926565b6040516102b49190612f01565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612f1c565b610949565b6040516102f19190612dfc565b60405180910390f35b34801561030657600080fd5b5061030f610961565b60405161031c9190612dfc565b60405180910390f35b34801561033157600080fd5b5061034c60048036038101906103479190612f49565b61096b565b6040516103599190612f01565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190612fda565b61099a565b005b34801561039757600080fd5b506103a0610a6e565b6040516103ad9190613023565b60405180910390f35b3480156103c257600080fd5b506103cb610a77565b6040516103d8919061309d565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612ea6565b610a9d565b6040516104159190612f01565b60405180910390f35b34801561042a57600080fd5b50610433610ad4565b60405161044091906130c7565b60405180910390f35b34801561045557600080fd5b5061045e610afa565b005b34801561046c57600080fd5b50610475610f1c565b005b34801561048357600080fd5b5061048c610fab565b60405161049991906130f1565b60405180910390f35b3480156104ae57600080fd5b506104b7610fd1565b6040516104c491906130f1565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612fda565b610ff7565b005b34801561050257600080fd5b5061050b6110cb565b6040516105189190612dfc565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612fda565b6110d1565b005b34801561055657600080fd5b50610571600480360381019061056c919061310c565b6111a5565b005b34801561057f57600080fd5b5061059a60048036038101906105959190612f1c565b6111d2565b6040516105a79190612dfc565b60405180910390f35b3480156105bc57600080fd5b506105c561121b565b005b3480156105d357600080fd5b506105dc61122f565b6040516105e991906130c7565b60405180910390f35b3480156105fe57600080fd5b50610607611255565b005b34801561061557600080fd5b50610630600480360381019061062b9190612fda565b6112e1565b005b34801561063e57600080fd5b5061065960048036038101906106549190612f1c565b6113b5565b604051610667929190613139565b60405180910390f35b34801561067c57600080fd5b50610685611464565b60405161069291906130c7565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd919061310c565b61148d565b005b3480156106d057600080fd5b506106d96114e3565b6040516106e69190612dc1565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612f1c565b611575565b005b34801561072457600080fd5b5061073f600480360381019061073a9190612ea6565b61197b565b60405161074c9190612f01565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190612ea6565b6119f2565b6040516107899190612f01565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190613162565b611a15565b6040516107c69190612dfc565b60405180910390f35b3480156107db57600080fd5b506107e4611a9c565b6040516107f191906130c7565b60405180910390f35b34801561080657600080fd5b5061080f611ac2565b005b34801561081d57600080fd5b5061083860048036038101906108339190612f1c565b611b4e565b005b34801561084657600080fd5b5061084f611bd1565b60405161085c9190612dfc565b60405180910390f35b34801561087157600080fd5b5061088c6004803603810190610887919061310c565b611bd7565b005b60606004805461089d906131d1565b80601f01602080910402602001604051908101604052809291908181526020018280546108c9906131d1565b80156109165780601f106108eb57610100808354040283529160200191610916565b820191906000526020600020905b8154815290600101906020018083116108f957829003601f168201915b5050505050905090565b60125481565b600080610931611c53565b905061093e818585611c5b565b600191505092915050565b60116020528060005260406000206000915090505481565b6000600354905090565b600080610976611c53565b9050610983858285611e24565b61098e858585611eb0565b60019150509392505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a219061324e565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610aa8611c53565b9050610ac9818585610aba8589611a15565b610ac4919061329d565b611c5b565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b02612591565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9391906132e6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3e91906132e6565b6040518363ffffffff1660e01b8152600401610c5b929190613313565b6020604051808303816000875af1158015610c7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9e91906132e6565b9050610cd3307f0000000000000000000000000000000000000000000000000000000000000000610cce306111d2565b611c5b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610d1a306111d2565b600080610d25611464565b426040518863ffffffff1660e01b8152600401610d4796959493929190613377565b60606040518083038185885af1158015610d65573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d8a91906133ed565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043601081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db07f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401610e5091906130c7565b600060405180830381600087803b158015610e6a57600080fd5b505af1158015610e7e573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401610edd91906130c7565b600060405180830381600087803b158015610ef757600080fd5b505af1158015610f0b573d6000803e3d6000fd5b50505050610f196001611bd7565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631e83409a336040518263ffffffff1660e01b8152600401610f7791906130c7565b600060405180830381600087803b158015610f9157600080fd5b505af1158015610fa5573d6000803e3d6000fd5b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e9061324e565b60405180910390fd5b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611161576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111589061324e565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111ad612591565b60326009546111bc919061346f565b8111156111c857600080fd5b8060128190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611223612591565b61122d600061260f565b565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61125d612591565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166343d726d66040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156112c757600080fd5b505af11580156112db573d6000803e3d6000fd5b50505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113689061324e565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1846040518263ffffffff1660e01b815260040161141391906130c7565b606060405180830381865afa158015611430573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145491906134a0565b9091508092508193505050915091565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611495612591565b60058111156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d09061353f565b60405180910390fd5b80600b8190555050565b6060600580546114f2906131d1565b80601f016020809104026020016040519081016040528092919081815260200182805461151e906131d1565b801561156b5780601f106115405761010080835404028352916020019161156b565b820191906000526020600020905b81548152906001019060200180831161154e57829003601f168201915b5050505050905090565b61157d612591565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db060006040518263ffffffff1660e01b815260040161161a91906130c7565b600060405180830381600087803b15801561163457600080fd5b505af1158015611648573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016116c991906130c7565b600060405180830381600087803b1580156116e357600080fd5b505af11580156116f7573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b815260040161175691906130c7565b600060405180830381600087803b15801561177057600080fd5b505af1158015611784573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db06117ce611464565b6040518263ffffffff1660e01b81526004016117ea91906130c7565b600060405180830381600087803b15801561180457600080fd5b505af1158015611818573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161189991906130c7565b600060405180830381600087803b1580156118b357600080fd5b505af11580156118c7573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db07f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161194691906130c7565b600060405180830381600087803b15801561196057600080fd5b505af1158015611974573d6000803e3d6000fd5b5050505050565b600080611986611c53565b905060006119948286611a15565b9050838110156119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906135d1565b60405180910390fd5b6119e68286868403611c5b565b60019250505092915050565b6000806119fd611c53565b9050611a0a818585611eb0565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611aca612591565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e52253816040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611b3457600080fd5b505af1158015611b48573d6000803e3d6000fd5b50505050565b611b56612591565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc90613663565b60405180910390fd5b611bce8161260f565b50565b60065481565b611bdf612591565b60018110158015611bf1575060648111155b611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c27906136cf565b60405180910390fd5b606481600954611c4091906136ef565b611c4a919061346f565b60068190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc1906137a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090613835565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e179190612dfc565b60405180910390a3505050565b6000611e308484611a15565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611eaa5781811015611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e93906138a1565b60405180910390fd5b611ea98484848403611c5b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612035573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611f6c5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611fa95750611f7a611464565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611fe65750611fb7611464565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c9061390d565b60405180910390fd5b6120308383836126d3565b61258c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120be57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120fd57506120cd611464565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561215557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156121b35760065481612167846111d2565b612171919061329d565b11156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a990613979565b60405180910390fd5b5b60006121be306111d2565b90506012548111156121d05760125490505b60006012541180156121e3575060125481145b80156121fc5750600c60009054906101000a900460ff16155b80156122565750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156122b4576001600c60006101000a81548160ff02191690831515021790555061227f8161294c565b600047905060008111156122975761229681612b89565b5b6000600c60006101000a81548160ff021916908315150217905550505b600060046010546122c5919061329d565b43111580156123215750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156123435761232f84612c99565b1561233957600080fd5b600a549050612355565b6000600b54111561235457600b5490505b5b60008111801561239157503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156123d057506123a0611464565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561242857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156124645760006064828561243d91906136ef565b612447919061346f565b905080846124559190613999565b93506124628630836126d3565b505b61246f8585856126d3565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340b8405a866040518263ffffffff1660e01b81526004016124ca91906130f1565b600060405180830381600087803b1580156124e457600080fd5b505af11580156124f8573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340b8405a856040518263ffffffff1660e01b815260040161255791906130f1565b600060405180830381600087803b15801561257157600080fd5b505af1158015612585573d6000803e3d6000fd5b5050505050505b505050565b612599611c53565b73ffffffffffffffffffffffffffffffffffffffff166125b7611464565b73ffffffffffffffffffffffffffffffffffffffff161461260d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260490613a19565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273990613aab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890613b3d565b60405180910390fd5b6127bc838383612cac565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a90613bcf565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129339190612dfc565b60405180910390a3612946848484612cb1565b50505050565b6000600267ffffffffffffffff81111561296957612968613bef565b5b6040519080825280602002602001820160405280156129975781602001602082028036833780820191505090505b50905030816000815181106129af576129ae613c1e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a7891906132e6565b81600181518110612a8c57612a8b613c1e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612af1307f000000000000000000000000000000000000000000000000000000000000000084611c5b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612b53959493929190613d0b565b600060405180830381600087803b158015612b6d57600080fd5b505af1158015612b81573d6000803e3d6000fd5b505050505050565b6000600582612b98919061346f565b90506000600a83612ba9919061346f565b90506000600a84612bba919061346f565b9050600081838587612bcc9190613999565b612bd69190613999565b612be09190613999565b9050612c0e600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612cb6565b612c3a600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612cb6565b612c66600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612cb6565b612c92600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612cb6565b5050505050565b600080823b905060008111915050919050565b505050565b505050565b6000811115612d2d5760008273ffffffffffffffffffffffffffffffffffffffff1682604051612ce590613d96565b60006040518083038185875af1925050503d8060008114612d22576040519150601f19603f3d011682016040523d82523d6000602084013e612d27565b606091505b50509050505b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d6b578082015181840152602081019050612d50565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d9382612d31565b612d9d8185612d3c565b9350612dad818560208601612d4d565b612db681612d77565b840191505092915050565b60006020820190508181036000830152612ddb8184612d88565b905092915050565b6000819050919050565b612df681612de3565b82525050565b6000602082019050612e116000830184612ded565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e4782612e1c565b9050919050565b612e5781612e3c565b8114612e6257600080fd5b50565b600081359050612e7481612e4e565b92915050565b612e8381612de3565b8114612e8e57600080fd5b50565b600081359050612ea081612e7a565b92915050565b60008060408385031215612ebd57612ebc612e17565b5b6000612ecb85828601612e65565b9250506020612edc85828601612e91565b9150509250929050565b60008115159050919050565b612efb81612ee6565b82525050565b6000602082019050612f166000830184612ef2565b92915050565b600060208284031215612f3257612f31612e17565b5b6000612f4084828501612e65565b91505092915050565b600080600060608486031215612f6257612f61612e17565b5b6000612f7086828701612e65565b9350506020612f8186828701612e65565b9250506040612f9286828701612e91565b9150509250925092565b6000612fa782612e1c565b9050919050565b612fb781612f9c565b8114612fc257600080fd5b50565b600081359050612fd481612fae565b92915050565b600060208284031215612ff057612fef612e17565b5b6000612ffe84828501612fc5565b91505092915050565b600060ff82169050919050565b61301d81613007565b82525050565b60006020820190506130386000830184613014565b92915050565b6000819050919050565b600061306361305e61305984612e1c565b61303e565b612e1c565b9050919050565b600061307582613048565b9050919050565b60006130878261306a565b9050919050565b6130978161307c565b82525050565b60006020820190506130b2600083018461308e565b92915050565b6130c181612e3c565b82525050565b60006020820190506130dc60008301846130b8565b92915050565b6130eb81612f9c565b82525050565b600060208201905061310660008301846130e2565b92915050565b60006020828403121561312257613121612e17565b5b600061313084828501612e91565b91505092915050565b600060408201905061314e6000830185612ded565b61315b6020830184612ded565b9392505050565b6000806040838503121561317957613178612e17565b5b600061318785828601612e65565b925050602061319885828601612e65565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131e957607f821691505b6020821081036131fc576131fb6131a2565b5b50919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000613238600e83612d3c565b915061324382613202565b602082019050919050565b600060208201905081810360008301526132678161322b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132a882612de3565b91506132b383612de3565b92508282019050808211156132cb576132ca61326e565b5b92915050565b6000815190506132e081612e4e565b92915050565b6000602082840312156132fc576132fb612e17565b5b600061330a848285016132d1565b91505092915050565b600060408201905061332860008301856130b8565b61333560208301846130b8565b9392505050565b6000819050919050565b600061336161335c6133578461333c565b61303e565b612de3565b9050919050565b61337181613346565b82525050565b600060c08201905061338c60008301896130b8565b6133996020830188612ded565b6133a66040830187613368565b6133b36060830186613368565b6133c060808301856130b8565b6133cd60a0830184612ded565b979650505050505050565b6000815190506133e781612e7a565b92915050565b60008060006060848603121561340657613405612e17565b5b6000613414868287016133d8565b9350506020613425868287016133d8565b9250506040613436868287016133d8565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061347a82612de3565b915061348583612de3565b92508261349557613494613440565b5b828204905092915050565b6000806000606084860312156134b9576134b8612e17565b5b60006134c7868287016132d1565b93505060206134d8868287016133d8565b92505060406134e9868287016133d8565b9150509250925092565b7f4665652063616e206f6e6c79206265206c6f7765726564000000000000000000600082015250565b6000613529601783612d3c565b9150613534826134f3565b602082019050919050565b600060208201905081810360008301526135588161351c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135bb602583612d3c565b91506135c68261355f565b604082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061364d602683612d3c565b9150613658826135f1565b604082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f696e76616c69642070657263656e740000000000000000000000000000000000600082015250565b60006136b9600f83612d3c565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b60006136fa82612de3565b915061370583612de3565b925082820261371381612de3565b9150828204841483151761372a5761372961326e565b5b5092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061378d602483612d3c565b915061379882613731565b604082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061381f602283612d3c565b915061382a826137c3565b604082019050919050565b6000602082019050818103600083015261384e81613812565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061388b601d83612d3c565b915061389682613855565b602082019050919050565b600060208201905081810360008301526138ba8161387e565b9050919050565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b60006138f7600b83612d3c565b9150613902826138c1565b602082019050919050565b60006020820190508181036000830152613926816138ea565b9050919050565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b6000613963600a83612d3c565b915061396e8261392d565b602082019050919050565b6000602082019050818103600083015261399281613956565b9050919050565b60006139a482612de3565b91506139af83612de3565b92508282039050818111156139c7576139c661326e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a03602083612d3c565b9150613a0e826139cd565b602082019050919050565b60006020820190508181036000830152613a32816139f6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a95602583612d3c565b9150613aa082613a39565b604082019050919050565b60006020820190508181036000830152613ac481613a88565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b27602383612d3c565b9150613b3282613acb565b604082019050919050565b60006020820190508181036000830152613b5681613b1a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613bb9602683612d3c565b9150613bc482613b5d565b604082019050919050565b60006020820190508181036000830152613be881613bac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c8281612e3c565b82525050565b6000613c948383613c79565b60208301905092915050565b6000602082019050919050565b6000613cb882613c4d565b613cc28185613c58565b9350613ccd83613c69565b8060005b83811015613cfe578151613ce58882613c88565b9750613cf083613ca0565b925050600181019050613cd1565b5085935050505092915050565b600060a082019050613d206000830188612ded565b613d2d6020830187613368565b8181036040830152613d3f8186613cad565b9050613d4e60608301856130b8565b613d5b6080830184612ded565b9695505050505050565b600081905092915050565b50565b6000613d80600083613d65565b9150613d8b82613d70565b600082019050919050565b6000613da182613d73565b915081905091905056fea2646970667358221220c2f8762c848beb658964a4b33146ca60fd72e909a423f8c589a175483050913264736f6c6343000813003360806040523480156200001157600080fd5b506040518060400160405280600f81526020017f4f545345415f4469766964656e647300000000000000000000000000000000008152506040518060400160405280600f81526020017f4f545345415f4469766964656e647300000000000000000000000000000000008152508181816003908162000091919062000457565b508060049081620000a3919062000457565b5050505050620000c8620000bc6200010f60201b60201c565b6200011760201b60201c565b33600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053e565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025f57607f821691505b60208210810362000275576200027462000217565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a0565b620002eb8683620002a0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000338620003326200032c8462000303565b6200030d565b62000303565b9050919050565b6000819050919050565b620003548362000317565b6200036c62000363826200033f565b848454620002ad565b825550505050565b600090565b6200038362000374565b6200039081848462000349565b505050565b5b81811015620003b857620003ac60008262000379565b60018101905062000396565b5050565b601f8211156200040757620003d1816200027b565b620003dc8462000290565b81016020851015620003ec578190505b62000404620003fb8562000290565b83018262000395565b50505b505050565b600082821c905092915050565b60006200042c600019846008026200040c565b1980831691505092915050565b600062000447838362000419565b9150826002028217905092915050565b6200046282620001dd565b67ffffffffffffffff8111156200047e576200047d620001e8565b5b6200048a825462000246565b62000497828285620003bc565b600060209050601f831160018114620004cf5760008415620004ba578287015190505b620004c6858262000439565b86555062000536565b601f198416620004df866200027b565b60005b828110156200050957848901518255600182019150602085019450602081019050620004e2565b8683101562000529578489015162000525601f89168262000419565b8355505b6001600288020188555050505b505050505050565b612e8d806200054e6000396000f3fe6080604052600436106101d15760003560e01c806370a08231116100f7578063a8b9d24011610095578063dd62ed3e11610064578063dd62ed3e146106a6578063e5225381146106e3578063f2fde38b146106fa578063fbcbc0f114610723576101e0565b8063a8b9d240146105c4578063a9059cbb14610601578063aafd847a1461063e578063c9e7cc131461067b576101e0565b80638da5cb5b116100d15780638da5cb5b146104f457806391b89fba1461051f57806395d89b411461055c578063a457c2d714610587576101e0565b806370a0823114610475578063715018a6146104b257806385a6b3ae146104c9576101e0565b8063313ce5671161016f57806343d726d61161013e57806343d726d6146103df5780634e7b827f146103f6578063627749e6146104335780636a4740021461045e576101e0565b8063313ce5671461032557806331e79db014610350578063395093511461037957806340b8405a146103b6576101e0565b806318160ddd116101ab57806318160ddd146102575780631e83409a1461028257806323b872dd146102ab57806327ce0147146102e8576101e0565b806303c83302146101e557806306fdde03146101ef578063095ea7b31461021a576101e0565b366101e0576101de610762565b005b600080fd5b6101ed610762565b005b3480156101fb57600080fd5b50610204610826565b6040516102119190611fa5565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612060565b6108b8565b60405161024e91906120bb565b60405180910390f35b34801561026357600080fd5b5061026c6108db565b60405161027991906120e5565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612100565b6108e5565b005b3480156102b757600080fd5b506102d260048036038101906102cd919061212d565b610959565b6040516102df91906120bb565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a9190612100565b610988565b60405161031c91906120e5565b60405180910390f35b34801561033157600080fd5b5061033a610a2b565b604051610347919061219c565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612100565b610a34565b005b34801561038557600080fd5b506103a0600480360381019061039b9190612060565b610ae5565b6040516103ad91906120bb565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906121f5565b610b1c565b005b3480156103eb57600080fd5b506103f4610c16565b005b34801561040257600080fd5b5061041d60048036038101906104189190612100565b610c6c565b60405161042a91906120bb565b60405180910390f35b34801561043f57600080fd5b50610448610c8c565b60405161045591906120e5565b60405180910390f35b34801561046a57600080fd5b50610473610c92565b005b34801561048157600080fd5b5061049c60048036038101906104979190612100565b610cfe565b6040516104a991906120e5565b60405180910390f35b3480156104be57600080fd5b506104c7610d46565b005b3480156104d557600080fd5b506104de610d5a565b6040516104eb91906120e5565b60405180910390f35b34801561050057600080fd5b50610509610d60565b6040516105169190612231565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190612100565b610d8a565b60405161055391906120e5565b60405180910390f35b34801561056857600080fd5b50610571610d9c565b60405161057e9190611fa5565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612060565b610e2e565b6040516105bb91906120bb565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190612100565b610ea5565b6040516105f891906120e5565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190612060565b610f08565b60405161063591906120bb565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190612100565b610f2b565b60405161067291906120e5565b60405180910390f35b34801561068757600080fd5b50610690610f74565b60405161069d91906120e5565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c8919061224c565b610f7b565b6040516106da91906120e5565b60405180910390f35b3480156106ef57600080fd5b506106f8611002565b005b34801561070657600080fd5b50610721600480360381019061071c9190612100565b6110e5565b005b34801561072f57600080fd5b5061074a60048036038101906107459190612100565b611168565b6040516107599392919061228c565b60405180910390f35b600061076c6108db565b1161077657600080fd5b6000341115610824576107c961078a6108db565b6107ae7001000000000000000000000000000000003461118d90919063ffffffff16565b6107b89190612321565b60055461120790919063ffffffff16565b6005819055507fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165113334604051610800929190612352565b60405180910390a161081d3460085461120790919063ffffffff16565b6008819055505b565b606060038054610835906123aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610861906123aa565b80156108ae5780601f10610883576101008083540402835291602001916108ae565b820191906000526020600020905b81548152906001019060200180831161089157829003601f168201915b5050505050905090565b6000806108c3611265565b90506108d081858561126d565b600191505092915050565b6000600254905090565b6108ed611436565b6000600c54148061090d5750624f1a00600c5461090a91906123db565b42105b61094c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109439061245b565b60405180910390fd5b610955816114b4565b5050565b600080610964611265565b90506109718582856116c4565b61097c858585611750565b60019150509392505050565b6000700100000000000000000000000000000000610a1a610a15600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a07610a026109f188610cfe565b60055461118d90919063ffffffff16565b6117bf565b6117dc90919063ffffffff16565b611827565b610a249190612321565b9050919050565b60006012905090565b610a3c611436565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610a9f81600061183e565b8073ffffffffffffffffffffffffffffffffffffffff167fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2560405160405180910390a250565b600080610af0611265565b9050610b11818585610b028589610f7b565b610b0c91906123db565b61126d565b600191505092915050565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c1357610c1281600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610bcc91906124da565b602060405180830381865afa158015610be9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0d919061250a565b61183e565b5b50565b610c1e611436565b6000600c5414610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90612583565b60405180910390fd5b42600c81905550565b600b6020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6000610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca9061263b565b60405180910390fd5b600d60009054906101000a900460ff16600d60006101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d4e611436565b610d5860006118ab565b565b60085481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610d9582610ea5565b9050919050565b606060048054610dab906123aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd7906123aa565b8015610e245780601f10610df957610100808354040283529160200191610e24565b820191906000526020600020905b815481529060010190602001808311610e0757829003601f168201915b5050505050905090565b600080610e39611265565b90506000610e478286610f7b565b905083811015610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e83906126cd565b60405180910390fd5b610e99828686840361126d565b60019250505092915050565b6000610f01600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef384610988565b61197190919063ffffffff16565b9050919050565b600080610f13611265565b9050610f20818585611750565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b624f1a0081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61100a611436565b6000600c541015801561102d5750624f1a00600c5461102991906123db565b4210155b61106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612739565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110929061278a565b60006040518083038185875af1925050503d80600081146110cf576040519150601f19603f3d011682016040523d82523d6000602084013e6110d4565b606091505b50509050806110e257600080fd5b50565b6110ed611436565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361115c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115390612811565b60405180910390fd5b611165816118ab565b50565b600080600083925061117983610ea5565b915061118483610988565b90509193909250565b600080830361119f5760009050611201565b600082846111ad9190612831565b90508284826111bc9190612321565b146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f3906128e5565b60405180910390fd5b809150505b92915050565b600080828461121691906123db565b90508381101561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290612951565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d3906129e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134290612a75565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161142991906120e5565b60405180910390a3505050565b61143e611265565b73ffffffffffffffffffffffffffffffffffffffff1661145c610d60565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990612ae1565b60405180910390fd5b565b6000806114c083610ea5565b905060008111156116b95761151d81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461120790919063ffffffff16565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8382604051611591929190612b01565b60405180910390a160008373ffffffffffffffffffffffffffffffffffffffff1682610bb8906040516115c39061278a565b600060405180830381858888f193505050503d8060008114611601576040519150601f19603f3d011682016040523d82523d6000602084013e611606565b606091505b50509050806116af5761166182600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197190919063ffffffff16565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000925050506116bf565b81925050506116bf565b60009150505b919050565b60006116d08484610f7b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461174a578181101561173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390612b76565b60405180910390fd5b611749848484840361126d565b5b50505050565b6000611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890612be2565b60405180910390fd5b600d60009054906101000a900460ff16600d60006101000a81548160ff021916908315150217905550505050565b60008082905060008112156117d357600080fd5b80915050919050565b60008082846117eb9190612c0c565b9050600083121580156117fe5750838112155b80611814575060008312801561181357508381125b5b61181d57600080fd5b8091505092915050565b60008082121561183657600080fd5b819050919050565b600061184983610cfe565b90508082111561187a576000611868828461197190919063ffffffff16565b905061187484826119bb565b506118a6565b808210156118a5576000611897838361197190919063ffffffff16565b90506118a38482611a7a565b505b5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119b383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b39565b905092915050565b6119c58282611b9d565b611a336119e56119e08360055461118d90919063ffffffff16565b6117bf565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf390919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611a848282611d3e565b611af2611aa4611a9f8360055461118d90919063ffffffff16565b6117bf565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117dc90919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000838311158290611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b789190611fa5565b60405180910390fd5b5060008385611b909190612c50565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390612cd0565b60405180910390fd5b611c1860008383611f0b565b8060026000828254611c2a91906123db565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cdb91906120e5565b60405180910390a3611cef60008383611f10565b5050565b6000808284611d029190612cf0565b905060008312158015611d155750838113155b80611d2b5750600083128015611d2a57508381135b5b611d3457600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490612da5565b60405180910390fd5b611db982600083611f0b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690612e37565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ef291906120e5565b60405180910390a3611f0683600084611f10565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f4f578082015181840152602081019050611f34565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f7782611f15565b611f818185611f20565b9350611f91818560208601611f31565b611f9a81611f5b565b840191505092915050565b60006020820190508181036000830152611fbf8184611f6c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ff782611fcc565b9050919050565b61200781611fec565b811461201257600080fd5b50565b60008135905061202481611ffe565b92915050565b6000819050919050565b61203d8161202a565b811461204857600080fd5b50565b60008135905061205a81612034565b92915050565b6000806040838503121561207757612076611fc7565b5b600061208585828601612015565b92505060206120968582860161204b565b9150509250929050565b60008115159050919050565b6120b5816120a0565b82525050565b60006020820190506120d060008301846120ac565b92915050565b6120df8161202a565b82525050565b60006020820190506120fa60008301846120d6565b92915050565b60006020828403121561211657612115611fc7565b5b600061212484828501612015565b91505092915050565b60008060006060848603121561214657612145611fc7565b5b600061215486828701612015565b935050602061216586828701612015565b92505060406121768682870161204b565b9150509250925092565b600060ff82169050919050565b61219681612180565b82525050565b60006020820190506121b1600083018461218d565b92915050565b60006121c282611fcc565b9050919050565b6121d2816121b7565b81146121dd57600080fd5b50565b6000813590506121ef816121c9565b92915050565b60006020828403121561220b5761220a611fc7565b5b6000612219848285016121e0565b91505092915050565b61222b81611fec565b82525050565b60006020820190506122466000830184612222565b92915050565b6000806040838503121561226357612262611fc7565b5b600061227185828601612015565b925050602061228285828601612015565b9150509250929050565b60006060820190506122a16000830186612222565b6122ae60208301856120d6565b6122bb60408301846120d6565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061232c8261202a565b91506123378361202a565b925082612347576123466122c3565b5b828204905092915050565b60006040820190506123676000830185612222565b61237460208301846120d6565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806123c257607f821691505b6020821081036123d5576123d461237b565b5b50919050565b60006123e68261202a565b91506123f18361202a565b9250828201905080821115612409576124086122f2565b5b92915050565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b6000612445600683611f20565b91506124508261240f565b602082019050919050565b6000602082019050818103600083015261247481612438565b9050919050565b6000819050919050565b60006124a061249b61249684611fcc565b61247b565b611fcc565b9050919050565b60006124b282612485565b9050919050565b60006124c4826124a7565b9050919050565b6124d4816124b9565b82525050565b60006020820190506124ef60008301846124cb565b92915050565b60008151905061250481612034565b92915050565b6000602082840312156125205761251f611fc7565b5b600061252e848285016124f5565b91505092915050565b7f436f6e74726163742077617320616c726561647920636c6f7365642e00000000600082015250565b600061256d601c83611f20565b915061257882612537565b602082019050919050565b6000602082019050818103600083015261259c81612560565b9050919050565b7f77697468647261774469766964656e642064697361626c65642e20557365207460008201527f68652027636c61696d272066756e6374696f6e206f6e20746865206d61696e2060208201527f746f6b656e20636f6e74726163742e0000000000000000000000000000000000604082015250565b6000612625604f83611f20565b9150612630826125a3565b606082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006126b7602583611f20565b91506126c28261265b565b604082019050919050565b600060208201905081810360008301526126e6816126aa565b9050919050565b7f43616e6e6f7420636f6c6c656374207965742e00000000000000000000000000600082015250565b6000612723601383611f20565b915061272e826126ed565b602082019050919050565b6000602082019050818103600083015261275281612716565b9050919050565b600081905092915050565b50565b6000612774600083612759565b915061277f82612764565b600082019050919050565b600061279582612767565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127fb602683611f20565b91506128068261279f565b604082019050919050565b6000602082019050818103600083015261282a816127ee565b9050919050565b600061283c8261202a565b91506128478361202a565b92508282026128558161202a565b9150828204841483151761286c5761286b6122f2565b5b5092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006128cf602183611f20565b91506128da82612873565b604082019050919050565b600060208201905081810360008301526128fe816128c2565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061293b601b83611f20565b915061294682612905565b602082019050919050565b6000602082019050818103600083015261296a8161292e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129cd602483611f20565b91506129d882612971565b604082019050919050565b600060208201905081810360008301526129fc816129c0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a5f602283611f20565b9150612a6a82612a03565b604082019050919050565b60006020820190508181036000830152612a8e81612a52565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612acb602083611f20565b9150612ad682612a95565b602082019050919050565b60006020820190508181036000830152612afa81612abe565b9050919050565b6000604082019050612b1660008301856124cb565b612b2360208301846120d6565b9392505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b60601d83611f20565b9150612b6b82612b2a565b602082019050919050565b60006020820190508181036000830152612b8f81612b53565b9050919050565b7f4e6f207472616e736665727320616c6c6f776564000000000000000000000000600082015250565b6000612bcc601483611f20565b9150612bd782612b96565b602082019050919050565b60006020820190508181036000830152612bfb81612bbf565b9050919050565b6000819050919050565b6000612c1782612c02565b9150612c2283612c02565b925082820190508281121560008312168382126000841215161715612c4a57612c496122f2565b5b92915050565b6000612c5b8261202a565b9150612c668361202a565b9250828203905081811115612c7e57612c7d6122f2565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612cba601f83611f20565b9150612cc582612c84565b602082019050919050565b60006020820190508181036000830152612ce981612cad565b9050919050565b6000612cfb82612c02565b9150612d0683612c02565b9250828203905081811260008412168282136000851215161715612d2d57612d2c6122f2565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d8f602183611f20565b9150612d9a82612d33565b604082019050919050565b60006020820190508181036000830152612dbe81612d82565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e21602283611f20565b9150612e2c82612dc5565b604082019050919050565b60006020820190508181036000830152612e5081612e14565b905091905056fea26469706673582212202e74ad379d4c9950a6d3c40f483adcf6f490fd0669ec19682b9c59589a7d0ca964736f6c6343000813003300000000000000000000000081be68d86eb5645fe696e6c911791a5169ddff080000000000000000000000001c17a4cbb41460e92a91dac7cab5b661b273236d000000000000000000000000ab66f3321ee1ec07daf4f4ca757bfcfdc943aad4000000000000000000000000b50f3731046d4a6716bb1ef7e742735e2eef9990
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80636abfe8461161012357806395d89b41116100ab578063e2c8dd341161006f578063e2c8dd34146107cf578063e5225381146107fa578063f2fde38b14610811578063f8b45b051461083a578063f8f2bfce1461086557610225565b806395d89b41146106c4578063a1972fc4146106ef578063a457c2d714610718578063a9059cbb14610755578063dd62ed3e1461079257610225565b8063786c5065116100f2578063786c5065146105f257806378831b36146106095780638bcdcbf3146106325780638da5cb5b146106705780639012c4a81461069b57610225565b80636abfe8461461054a57806370a0823114610573578063715018a6146105b057806375f0a874146105c757610225565b806339509351116101a65780635a954293116101755780635a954293146104775780635c705340146104a25780635d098b38146104cd57806362e9ddd4146104f657806363807c061461052157610225565b806339509351146103e157806349bd5a5e1461041e5780634c8faa00146104495780634e71d92d1461046057610225565b806318160ddd116101ed57806318160ddd146102fa57806323b872dd146103255780632b804d5614610362578063313ce5671461038b57806335d97405146103b657610225565b806306fdde031461022a57806308aa269514610255578063095ea7b314610280578063098fec39146102bd57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f61088e565b60405161024c9190612dc1565b60405180910390f35b34801561026157600080fd5b5061026a610920565b6040516102779190612dfc565b60405180910390f35b34801561028c57600080fd5b506102a760048036038101906102a29190612ea6565b610926565b6040516102b49190612f01565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612f1c565b610949565b6040516102f19190612dfc565b60405180910390f35b34801561030657600080fd5b5061030f610961565b60405161031c9190612dfc565b60405180910390f35b34801561033157600080fd5b5061034c60048036038101906103479190612f49565b61096b565b6040516103599190612f01565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190612fda565b61099a565b005b34801561039757600080fd5b506103a0610a6e565b6040516103ad9190613023565b60405180910390f35b3480156103c257600080fd5b506103cb610a77565b6040516103d8919061309d565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190612ea6565b610a9d565b6040516104159190612f01565b60405180910390f35b34801561042a57600080fd5b50610433610ad4565b60405161044091906130c7565b60405180910390f35b34801561045557600080fd5b5061045e610afa565b005b34801561046c57600080fd5b50610475610f1c565b005b34801561048357600080fd5b5061048c610fab565b60405161049991906130f1565b60405180910390f35b3480156104ae57600080fd5b506104b7610fd1565b6040516104c491906130f1565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612fda565b610ff7565b005b34801561050257600080fd5b5061050b6110cb565b6040516105189190612dfc565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612fda565b6110d1565b005b34801561055657600080fd5b50610571600480360381019061056c919061310c565b6111a5565b005b34801561057f57600080fd5b5061059a60048036038101906105959190612f1c565b6111d2565b6040516105a79190612dfc565b60405180910390f35b3480156105bc57600080fd5b506105c561121b565b005b3480156105d357600080fd5b506105dc61122f565b6040516105e991906130c7565b60405180910390f35b3480156105fe57600080fd5b50610607611255565b005b34801561061557600080fd5b50610630600480360381019061062b9190612fda565b6112e1565b005b34801561063e57600080fd5b5061065960048036038101906106549190612f1c565b6113b5565b604051610667929190613139565b60405180910390f35b34801561067c57600080fd5b50610685611464565b60405161069291906130c7565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd919061310c565b61148d565b005b3480156106d057600080fd5b506106d96114e3565b6040516106e69190612dc1565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612f1c565b611575565b005b34801561072457600080fd5b5061073f600480360381019061073a9190612ea6565b61197b565b60405161074c9190612f01565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190612ea6565b6119f2565b6040516107899190612f01565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190613162565b611a15565b6040516107c69190612dfc565b60405180910390f35b3480156107db57600080fd5b506107e4611a9c565b6040516107f191906130c7565b60405180910390f35b34801561080657600080fd5b5061080f611ac2565b005b34801561081d57600080fd5b5061083860048036038101906108339190612f1c565b611b4e565b005b34801561084657600080fd5b5061084f611bd1565b60405161085c9190612dfc565b60405180910390f35b34801561087157600080fd5b5061088c6004803603810190610887919061310c565b611bd7565b005b60606004805461089d906131d1565b80601f01602080910402602001604051908101604052809291908181526020018280546108c9906131d1565b80156109165780601f106108eb57610100808354040283529160200191610916565b820191906000526020600020905b8154815290600101906020018083116108f957829003601f168201915b5050505050905090565b60125481565b600080610931611c53565b905061093e818585611c5b565b600191505092915050565b60116020528060005260406000206000915090505481565b6000600354905090565b600080610976611c53565b9050610983858285611e24565b61098e858585611eb0565b60019150509392505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a219061324e565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610aa8611c53565b9050610ac9818585610aba8589611a15565b610ac4919061329d565b611c5b565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b02612591565b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9391906132e6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3e91906132e6565b6040518363ffffffff1660e01b8152600401610c5b929190613313565b6020604051808303816000875af1158015610c7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9e91906132e6565b9050610cd3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610cce306111d2565b611c5b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610d1a306111d2565b600080610d25611464565b426040518863ffffffff1660e01b8152600401610d4796959493929190613377565b60606040518083038185885af1158015610d65573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d8a91906133ed565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043601081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db07f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6040518263ffffffff1660e01b8152600401610e5091906130c7565b600060405180830381600087803b158015610e6a57600080fd5b505af1158015610e7e573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0826040518263ffffffff1660e01b8152600401610edd91906130c7565b600060405180830381600087803b158015610ef757600080fd5b505af1158015610f0b573d6000803e3d6000fd5b50505050610f196001611bd7565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631e83409a336040518263ffffffff1660e01b8152600401610f7791906130c7565b600060405180830381600087803b158015610f9157600080fd5b505af1158015610fa5573d6000803e3d6000fd5b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e9061324e565b60405180910390fd5b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611161576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111589061324e565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111ad612591565b60326009546111bc919061346f565b8111156111c857600080fd5b8060128190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611223612591565b61122d600061260f565b565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61125d612591565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166343d726d66040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156112c757600080fd5b505af11580156112db573d6000803e3d6000fd5b50505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113689061324e565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1846040518263ffffffff1660e01b815260040161141391906130c7565b606060405180830381865afa158015611430573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145491906134a0565b9091508092508193505050915091565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611495612591565b60058111156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d09061353f565b60405180910390fd5b80600b8190555050565b6060600580546114f2906131d1565b80601f016020809104026020016040519081016040528092919081815260200182805461151e906131d1565b801561156b5780601f106115405761010080835404028352916020019161156b565b820191906000526020600020905b81548152906001019060200180831161154e57829003601f168201915b5050505050905090565b61157d612591565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db060006040518263ffffffff1660e01b815260040161161a91906130c7565b600060405180830381600087803b15801561163457600080fd5b505af1158015611648573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016116c991906130c7565b600060405180830381600087803b1580156116e357600080fd5b505af11580156116f7573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0306040518263ffffffff1660e01b815260040161175691906130c7565b600060405180830381600087803b15801561177057600080fd5b505af1158015611784573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db06117ce611464565b6040518263ffffffff1660e01b81526004016117ea91906130c7565b600060405180830381600087803b15801561180457600080fd5b505af1158015611818573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161189991906130c7565b600060405180830381600087803b1580156118b357600080fd5b505af11580156118c7573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e79db07f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6040518263ffffffff1660e01b815260040161194691906130c7565b600060405180830381600087803b15801561196057600080fd5b505af1158015611974573d6000803e3d6000fd5b5050505050565b600080611986611c53565b905060006119948286611a15565b9050838110156119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d0906135d1565b60405180910390fd5b6119e68286868403611c5b565b60019250505092915050565b6000806119fd611c53565b9050611a0a818585611eb0565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611aca612591565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e52253816040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611b3457600080fd5b505af1158015611b48573d6000803e3d6000fd5b50505050565b611b56612591565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc90613663565b60405180910390fd5b611bce8161260f565b50565b60065481565b611bdf612591565b60018110158015611bf1575060648111155b611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c27906136cf565b60405180910390fd5b606481600954611c4091906136ef565b611c4a919061346f565b60068190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc1906137a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090613835565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e179190612dfc565b60405180910390a3505050565b6000611e308484611a15565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611eaa5781811015611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e93906138a1565b60405180910390fd5b611ea98484848403611c5b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612035573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611f6c5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611fa95750611f7a611464565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611fe65750611fb7611464565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c9061390d565b60405180910390fd5b6120308383836126d3565b61258c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120be57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120fd57506120cd611464565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561215557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156121b35760065481612167846111d2565b612171919061329d565b11156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a990613979565b60405180910390fd5b5b60006121be306111d2565b90506012548111156121d05760125490505b60006012541180156121e3575060125481145b80156121fc5750600c60009054906101000a900460ff16155b80156122565750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156122b4576001600c60006101000a81548160ff02191690831515021790555061227f8161294c565b600047905060008111156122975761229681612b89565b5b6000600c60006101000a81548160ff021916908315150217905550505b600060046010546122c5919061329d565b43111580156123215750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156123435761232f84612c99565b1561233957600080fd5b600a549050612355565b6000600b54111561235457600b5490505b5b60008111801561239157503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156123d057506123a0611464565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561242857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156124645760006064828561243d91906136ef565b612447919061346f565b905080846124559190613999565b93506124628630836126d3565b505b61246f8585856126d3565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340b8405a866040518263ffffffff1660e01b81526004016124ca91906130f1565b600060405180830381600087803b1580156124e457600080fd5b505af11580156124f8573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340b8405a856040518263ffffffff1660e01b815260040161255791906130f1565b600060405180830381600087803b15801561257157600080fd5b505af1158015612585573d6000803e3d6000fd5b5050505050505b505050565b612599611c53565b73ffffffffffffffffffffffffffffffffffffffff166125b7611464565b73ffffffffffffffffffffffffffffffffffffffff161461260d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260490613a19565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273990613aab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890613b3d565b60405180910390fd5b6127bc838383612cac565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a90613bcf565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129339190612dfc565b60405180910390a3612946848484612cb1565b50505050565b6000600267ffffffffffffffff81111561296957612968613bef565b5b6040519080825280602002602001820160405280156129975781602001602082028036833780820191505090505b50905030816000815181106129af576129ae613c1e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a7891906132e6565b81600181518110612a8c57612a8b613c1e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612af1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c5b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612b53959493929190613d0b565b600060405180830381600087803b158015612b6d57600080fd5b505af1158015612b81573d6000803e3d6000fd5b505050505050565b6000600582612b98919061346f565b90506000600a83612ba9919061346f565b90506000600a84612bba919061346f565b9050600081838587612bcc9190613999565b612bd69190613999565b612be09190613999565b9050612c0e600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612cb6565b612c3a600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612cb6565b612c66600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612cb6565b612c92600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612cb6565b5050505050565b600080823b905060008111915050919050565b505050565b505050565b6000811115612d2d5760008273ffffffffffffffffffffffffffffffffffffffff1682604051612ce590613d96565b60006040518083038185875af1925050503d8060008114612d22576040519150601f19603f3d011682016040523d82523d6000602084013e612d27565b606091505b50509050505b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d6b578082015181840152602081019050612d50565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d9382612d31565b612d9d8185612d3c565b9350612dad818560208601612d4d565b612db681612d77565b840191505092915050565b60006020820190508181036000830152612ddb8184612d88565b905092915050565b6000819050919050565b612df681612de3565b82525050565b6000602082019050612e116000830184612ded565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e4782612e1c565b9050919050565b612e5781612e3c565b8114612e6257600080fd5b50565b600081359050612e7481612e4e565b92915050565b612e8381612de3565b8114612e8e57600080fd5b50565b600081359050612ea081612e7a565b92915050565b60008060408385031215612ebd57612ebc612e17565b5b6000612ecb85828601612e65565b9250506020612edc85828601612e91565b9150509250929050565b60008115159050919050565b612efb81612ee6565b82525050565b6000602082019050612f166000830184612ef2565b92915050565b600060208284031215612f3257612f31612e17565b5b6000612f4084828501612e65565b91505092915050565b600080600060608486031215612f6257612f61612e17565b5b6000612f7086828701612e65565b9350506020612f8186828701612e65565b9250506040612f9286828701612e91565b9150509250925092565b6000612fa782612e1c565b9050919050565b612fb781612f9c565b8114612fc257600080fd5b50565b600081359050612fd481612fae565b92915050565b600060208284031215612ff057612fef612e17565b5b6000612ffe84828501612fc5565b91505092915050565b600060ff82169050919050565b61301d81613007565b82525050565b60006020820190506130386000830184613014565b92915050565b6000819050919050565b600061306361305e61305984612e1c565b61303e565b612e1c565b9050919050565b600061307582613048565b9050919050565b60006130878261306a565b9050919050565b6130978161307c565b82525050565b60006020820190506130b2600083018461308e565b92915050565b6130c181612e3c565b82525050565b60006020820190506130dc60008301846130b8565b92915050565b6130eb81612f9c565b82525050565b600060208201905061310660008301846130e2565b92915050565b60006020828403121561312257613121612e17565b5b600061313084828501612e91565b91505092915050565b600060408201905061314e6000830185612ded565b61315b6020830184612ded565b9392505050565b6000806040838503121561317957613178612e17565b5b600061318785828601612e65565b925050602061319885828601612e65565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131e957607f821691505b6020821081036131fc576131fb6131a2565b5b50919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000613238600e83612d3c565b915061324382613202565b602082019050919050565b600060208201905081810360008301526132678161322b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132a882612de3565b91506132b383612de3565b92508282019050808211156132cb576132ca61326e565b5b92915050565b6000815190506132e081612e4e565b92915050565b6000602082840312156132fc576132fb612e17565b5b600061330a848285016132d1565b91505092915050565b600060408201905061332860008301856130b8565b61333560208301846130b8565b9392505050565b6000819050919050565b600061336161335c6133578461333c565b61303e565b612de3565b9050919050565b61337181613346565b82525050565b600060c08201905061338c60008301896130b8565b6133996020830188612ded565b6133a66040830187613368565b6133b36060830186613368565b6133c060808301856130b8565b6133cd60a0830184612ded565b979650505050505050565b6000815190506133e781612e7a565b92915050565b60008060006060848603121561340657613405612e17565b5b6000613414868287016133d8565b9350506020613425868287016133d8565b9250506040613436868287016133d8565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061347a82612de3565b915061348583612de3565b92508261349557613494613440565b5b828204905092915050565b6000806000606084860312156134b9576134b8612e17565b5b60006134c7868287016132d1565b93505060206134d8868287016133d8565b92505060406134e9868287016133d8565b9150509250925092565b7f4665652063616e206f6e6c79206265206c6f7765726564000000000000000000600082015250565b6000613529601783612d3c565b9150613534826134f3565b602082019050919050565b600060208201905081810360008301526135588161351c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135bb602583612d3c565b91506135c68261355f565b604082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061364d602683612d3c565b9150613658826135f1565b604082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f696e76616c69642070657263656e740000000000000000000000000000000000600082015250565b60006136b9600f83612d3c565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b60006136fa82612de3565b915061370583612de3565b925082820261371381612de3565b9150828204841483151761372a5761372961326e565b5b5092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061378d602483612d3c565b915061379882613731565b604082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061381f602283612d3c565b915061382a826137c3565b604082019050919050565b6000602082019050818103600083015261384e81613812565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061388b601d83612d3c565b915061389682613855565b602082019050919050565b600060208201905081810360008301526138ba8161387e565b9050919050565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b60006138f7600b83612d3c565b9150613902826138c1565b602082019050919050565b60006020820190508181036000830152613926816138ea565b9050919050565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b6000613963600a83612d3c565b915061396e8261392d565b602082019050919050565b6000602082019050818103600083015261399281613956565b9050919050565b60006139a482612de3565b91506139af83612de3565b92508282039050818111156139c7576139c661326e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a03602083612d3c565b9150613a0e826139cd565b602082019050919050565b60006020820190508181036000830152613a32816139f6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a95602583612d3c565b9150613aa082613a39565b604082019050919050565b60006020820190508181036000830152613ac481613a88565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b27602383612d3c565b9150613b3282613acb565b604082019050919050565b60006020820190508181036000830152613b5681613b1a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613bb9602683612d3c565b9150613bc482613b5d565b604082019050919050565b60006020820190508181036000830152613be881613bac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c8281612e3c565b82525050565b6000613c948383613c79565b60208301905092915050565b6000602082019050919050565b6000613cb882613c4d565b613cc28185613c58565b9350613ccd83613c69565b8060005b83811015613cfe578151613ce58882613c88565b9750613cf083613ca0565b925050600181019050613cd1565b5085935050505092915050565b600060a082019050613d206000830188612ded565b613d2d6020830187613368565b8181036040830152613d3f8186613cad565b9050613d4e60608301856130b8565b613d5b6080830184612ded565b9695505050505050565b600081905092915050565b50565b6000613d80600083613d65565b9150613d8b82613d70565b600082019050919050565b6000613da182613d73565b915081905091905056fea2646970667358221220c2f8762c848beb658964a4b33146ca60fd72e909a423f8c589a175483050913264736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000081be68d86eb5645fe696e6c911791a5169ddff080000000000000000000000001c17a4cbb41460e92a91dac7cab5b661b273236d000000000000000000000000ab66f3321ee1ec07daf4f4ca757bfcfdc943aad4000000000000000000000000b50f3731046d4a6716bb1ef7e742735e2eef9990
-----Decoded View---------------
Arg [0] : _opWallet1 (address): 0x81be68d86EB5645Fe696E6C911791A5169dDFF08
Arg [1] : _opWallet2 (address): 0x1C17a4cbB41460E92A91DAC7cab5b661b273236d
Arg [2] : _dividendsWallet (address): 0xaB66F3321EE1eC07DAf4f4Ca757bFcFdC943AAd4
Arg [3] : _marketingWallet (address): 0xB50F3731046D4a6716Bb1Ef7E742735E2eef9990
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000081be68d86eb5645fe696e6c911791a5169ddff08
Arg [1] : 0000000000000000000000001c17a4cbb41460e92a91dac7cab5b661b273236d
Arg [2] : 000000000000000000000000ab66f3321ee1ec07daf4f4ca757bfcfdc943aad4
Arg [3] : 000000000000000000000000b50f3731046d4a6716bb1ef7e742735e2eef9990
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.