ERC-20
Overview
Max Total Supply
1,000,000,000 SCAT
Holders
101
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SCAT
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT /* WEB: https://spacecateth.com X: https://x.com/cateth_space TELEGRAM: https://t.me/SpaceCatETH */ pragma solidity ^0.8.12; import {Ownable} from "./Ownable.sol"; import {ERC20} from "./ERC20.sol"; import {IERC20} from "./IERC20.sol"; import {SafeMath} from "./SafeMath.sol"; import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; contract SCAT is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapRouter; address public uniswapV2Pair; bool private swapping; address payable public SCATWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public maxTaxSwap; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buySCATFee; uint256 public sellTotalFees; uint256 public sellSCATFee; uint256 public tokensForSCAT; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapRouter( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor() ERC20("SpaceCat", "SCAT") { IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapRouter), true); uniswapRouter = _uniswapRouter; uint256 _buySCATFee = 30; uint256 _sellSCATFee = 30; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 20_000_000 * 1e18; maxWallet = 20_000_000 * 1e18; maxTaxSwap = 20_000_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 10000; buySCATFee = _buySCATFee; buyTotalFees = buySCATFee; sellSCATFee = _sellSCATFee; sellTotalFees = sellSCATFee; SCATWallet = payable(msg.sender); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); _mint(msg.sender, totalSupply); _approve(msg.sender, address(_uniswapRouter), totalSupply); uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); } receive() external payable {} function enableTrading() external onlyOwner { require(!tradingActive, "trading"); tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 20) / 1000) / 1e18, "Cannot set maxWallet lower than 2.0%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees(uint256 _SCATFee) external onlyOwner { buySCATFee = _SCATFee; buyTotalFees = buySCATFee; } function updateSellFees(uint256 _SCATFee) external onlyOwner { sellSCATFee = _SCATFee; sellTotalFees = sellSCATFee; } function setSellFees(uint256 _SCATFee) external onlyOwner { sellSCATFee = _SCATFee; sellTotalFees = sellSCATFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from], "Sender blacklisted"); require(!blacklisted[to], "Receiver blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { //wallet tranfer token to another wallet require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && to == uniswapV2Pair ) { swapping = true; swapTokensForEth(min(amount, min(contractTokenBalance, maxTaxSwap))); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForSCAT += (fees * sellSCATFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForSCAT += (fees * buySCATFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), tokenAmount); // make the swap uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { SCATWallet.transfer(amount); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapRouter), tokenAmount); // add the liquidity uniswapRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function withdrawSCAT() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawSCATTokens( address _token, address _to ) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawETH(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.19; /** * @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.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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 {} }
pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import {IERC20} from "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
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 IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.19; import {Context} from "./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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } }
pragma solidity ^0.8.19; /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapRouter","type":"event"},{"inputs":[],"name":"SCATWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySCATFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellSCATFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_SCATFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"tokensForSCAT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_SCATFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_SCATFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSCAT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawSCATTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526001600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055505f600c60026101000a81548160ff02191690831515021790555034801561005d575f80fd5b506040518060400160405280600881526020017f53706163654361740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f534341540000000000000000000000000000000000000000000000000000000081525081600390816100d99190610dbf565b5080600490816100e99190610dbf565b5050506101086100fd6104b760201b60201c565b6104be60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905061013181600161058160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505f601e90505f601e90505f6b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a819055506a108b2a2c28029094000000600b819055506127106005826101c59190610ebb565b6101cf9190610f29565b60098190555082600f81905550600f54600e81905550816011819055506011546010819055503360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061025361024661066160201b60201c565b600161068960201b60201c565b61026430600161068960201b60201c565b61028261027561066160201b60201c565b600161058160201b60201c565b61029330600161058160201b60201c565b6102a333826107b760201b60201c565b6102b433858361091a60201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103239190610fb7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561038a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ae9190610fb7565b6040518363ffffffff1660e01b81526004016103cb929190610ff1565b6020604051808303815f875af11580156103e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061040b9190610fb7565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061047c60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161058160201b60201c565b6104ae60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610add60201b60201c565b505050506112a2565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61058f6104b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166105b361066160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060090611072565b60405180910390fd5b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106976104b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166106bb61066160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070890611072565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516107ab91906110aa565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c9061110d565b60405180910390fd5b6108365f8383610b7b60201b60201c565b8060025f828254610847919061112b565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610899919061112b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108fd919061116d565b60405180910390a36109165f8383610b8060201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f906111f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90611284565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ad0919061116d565b60405180910390a3505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610c0057607f821691505b602082108103610c1357610c12610bbc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610c757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610c3a565b610c7f8683610c3a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610cc3610cbe610cb984610c97565b610ca0565b610c97565b9050919050565b5f819050919050565b610cdc83610ca9565b610cf0610ce882610cca565b848454610c46565b825550505050565b5f90565b610d04610cf8565b610d0f818484610cd3565b505050565b5b81811015610d3257610d275f82610cfc565b600181019050610d15565b5050565b601f821115610d7757610d4881610c19565b610d5184610c2b565b81016020851015610d60578190505b610d74610d6c85610c2b565b830182610d14565b50505b505050565b5f82821c905092915050565b5f610d975f1984600802610d7c565b1980831691505092915050565b5f610daf8383610d88565b9150826002028217905092915050565b610dc882610b85565b67ffffffffffffffff811115610de157610de0610b8f565b5b610deb8254610be9565b610df6828285610d36565b5f60209050601f831160018114610e27575f8415610e15578287015190505b610e1f8582610da4565b865550610e86565b601f198416610e3586610c19565b5f5b82811015610e5c57848901518255600182019150602085019450602081019050610e37565b86831015610e795784890151610e75601f891682610d88565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ec582610c97565b9150610ed083610c97565b9250828202610ede81610c97565b91508282048414831517610ef557610ef4610e8e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610f3382610c97565b9150610f3e83610c97565b925082610f4e57610f4d610efc565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f8682610f5d565b9050919050565b610f9681610f7c565b8114610fa0575f80fd5b50565b5f81519050610fb181610f8d565b92915050565b5f60208284031215610fcc57610fcb610f59565b5b5f610fd984828501610fa3565b91505092915050565b610feb81610f7c565b82525050565b5f6040820190506110045f830185610fe2565b6110116020830184610fe2565b9392505050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61105c602083611018565b915061106782611028565b602082019050919050565b5f6020820190508181035f83015261108981611050565b9050919050565b5f8115159050919050565b6110a481611090565b82525050565b5f6020820190506110bd5f83018461109b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6110f7601f83611018565b9150611102826110c3565b602082019050919050565b5f6020820190508181035f830152611124816110eb565b9050919050565b5f61113582610c97565b915061114083610c97565b925082820190508082111561115857611157610e8e565b5b92915050565b61116781610c97565b82525050565b5f6020820190506111805f83018461115e565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6111e0602483611018565b91506111eb82611186565b604082019050919050565b5f6020820190508181035f83015261120d816111d4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61126e602283611018565b915061127982611214565b604082019050919050565b5f6020820190508181035f83015261129b81611262565b9050919050565b6080516147746112cf5f395f81816115430152818161326f0152818161334e015261337501526147745ff3fe608060405260043610610296575f3560e01c8063857a736b11610159578063c0246668116100c0578063e2f4560511610079578063e2f45605146109fb578063eba4c33314610a25578063ed9120d814610a4d578063f2fde38b14610a77578063f8b45b0514610a9f578063fe575a8714610ac95761029d565b8063c0246668146108df578063c18bc19514610907578063c8c8ebe41461092f578063d257b34f14610959578063d85ba06314610995578063dd62ed3e146109bf5761029d565b806395d89b411161011257806395d89b41146107af5780639a7a23d6146107d9578063a457c2d714610801578063a9059cbb1461083d578063b62496f514610879578063bbc0c742146108b55761029d565b8063857a736b146106cb5780638a8c523c146106f55780638da5cb5b1461070b578063924de9b71461073557806392931b1a1461075d57806395927c25146107875761029d565b80634fbee193116101fd578063712c568e116101b6578063712c568e146105e7578063715018a61461061157806371fc468814610627578063735de9f71461064f578063751039fc146106795780637571336a146106a35761029d565b80634fbee193146104c957806362997f8c14610505578063690d83201461052f5780636a486a8e146105575780636ddd17131461058157806370a08231146105ab5761029d565b8063313ce5671161024f578063313ce567146103d15780633888526d146103fb57806339509351146104115780633f79971b1461044d57806349bd5a5e146104755780634a62bb651461049f5761029d565b806306fdde03146102a1578063095ea7b3146102cb57806310d5de531461030757806318160ddd14610343578063203e727e1461036d57806323b872dd146103955761029d565b3661029d57005b5f80fd5b3480156102ac575f80fd5b506102b5610b05565b6040516102c29190613511565b60405180910390f35b3480156102d6575f80fd5b506102f160048036038101906102ec91906135c2565b610b95565b6040516102fe919061361a565b60405180910390f35b348015610312575f80fd5b5061032d60048036038101906103289190613633565b610bb2565b60405161033a919061361a565b60405180910390f35b34801561034e575f80fd5b50610357610bcf565b604051610364919061366d565b60405180910390f35b348015610378575f80fd5b50610393600480360381019061038e9190613686565b610bd8565b005b3480156103a0575f80fd5b506103bb60048036038101906103b691906136b1565b610ce7565b6040516103c8919061361a565b60405180910390f35b3480156103dc575f80fd5b506103e5610dd9565b6040516103f2919061371c565b60405180910390f35b348015610406575f80fd5b5061040f610de1565b005b34801561041c575f80fd5b50610437600480360381019061043291906135c2565b610f9b565b604051610444919061361a565b60405180910390f35b348015610458575f80fd5b50610473600480360381019061046e9190613735565b611042565b005b348015610480575f80fd5b50610489611228565b6040516104969190613782565b60405180910390f35b3480156104aa575f80fd5b506104b361124d565b6040516104c0919061361a565b60405180910390f35b3480156104d4575f80fd5b506104ef60048036038101906104ea9190613633565b61125f565b6040516104fc919061361a565b60405180910390f35b348015610510575f80fd5b506105196112b1565b604051610526919061366d565b60405180910390f35b34801561053a575f80fd5b5061055560048036038101906105509190613633565b6112b7565b005b348015610562575f80fd5b5061056b6113a8565b604051610578919061366d565b60405180910390f35b34801561058c575f80fd5b506105956113ae565b6040516105a2919061361a565b60405180910390f35b3480156105b6575f80fd5b506105d160048036038101906105cc9190613633565b6113c1565b6040516105de919061366d565b60405180910390f35b3480156105f2575f80fd5b506105fb611406565b60405161060891906137bb565b60405180910390f35b34801561061c575f80fd5b5061062561142b565b005b348015610632575f80fd5b5061064d60048036038101906106489190613686565b6114b2565b005b34801561065a575f80fd5b50610663611541565b604051610670919061382f565b60405180910390f35b348015610684575f80fd5b5061068d611565565b60405161069a919061361a565b60405180910390f35b3480156106ae575f80fd5b506106c960048036038101906106c49190613872565b611602565b005b3480156106d6575f80fd5b506106df6116d6565b6040516106ec919061366d565b60405180910390f35b348015610700575f80fd5b506107096116dc565b005b348015610716575f80fd5b5061071f6117e0565b60405161072c9190613782565b60405180910390f35b348015610740575f80fd5b5061075b600480360381019061075691906138b0565b611808565b005b348015610768575f80fd5b506107716118a1565b60405161077e919061366d565b60405180910390f35b348015610792575f80fd5b506107ad60048036038101906107a89190613686565b6118a7565b005b3480156107ba575f80fd5b506107c3611936565b6040516107d09190613511565b60405180910390f35b3480156107e4575f80fd5b506107ff60048036038101906107fa9190613872565b6119c6565b005b34801561080c575f80fd5b50610827600480360381019061082291906135c2565b611adf565b604051610834919061361a565b60405180910390f35b348015610848575f80fd5b50610863600480360381019061085e91906135c2565b611bc5565b604051610870919061361a565b60405180910390f35b348015610884575f80fd5b5061089f600480360381019061089a9190613633565b611be2565b6040516108ac919061361a565b60405180910390f35b3480156108c0575f80fd5b506108c9611bff565b6040516108d6919061361a565b60405180910390f35b3480156108ea575f80fd5b5061090560048036038101906109009190613872565b611c12565b005b348015610912575f80fd5b5061092d60048036038101906109289190613686565b611d34565b005b34801561093a575f80fd5b50610943611e43565b604051610950919061366d565b60405180910390f35b348015610964575f80fd5b5061097f600480360381019061097a9190613686565b611e49565b60405161098c919061361a565b60405180910390f35b3480156109a0575f80fd5b506109a9611ed6565b6040516109b6919061366d565b60405180910390f35b3480156109ca575f80fd5b506109e560048036038101906109e09190613735565b611edc565b6040516109f2919061366d565b60405180910390f35b348015610a06575f80fd5b50610a0f611f5e565b604051610a1c919061366d565b60405180910390f35b348015610a30575f80fd5b50610a4b6004803603810190610a469190613686565b611f64565b005b348015610a58575f80fd5b50610a61611ff3565b604051610a6e919061366d565b60405180910390f35b348015610a82575f80fd5b50610a9d6004803603810190610a989190613633565b611ff9565b005b348015610aaa575f80fd5b50610ab36120ef565b604051610ac0919061366d565b60405180910390f35b348015610ad4575f80fd5b50610aef6004803603810190610aea9190613633565b6120f5565b604051610afc919061361a565b60405180910390f35b606060038054610b1490613908565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4090613908565b8015610b8b5780601f10610b6257610100808354040283529160200191610b8b565b820191905f5260205f20905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b5f610ba8610ba1612147565b848461214e565b6001905092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b610be0612147565b73ffffffffffffffffffffffffffffffffffffffff16610bfe6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613982565b60405180910390fd5b670de0b6b3a76400006103e86005610c6a610bcf565b610c7491906139cd565b610c7e9190613a3b565b610c889190613a3b565b811015610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190613adb565b60405180910390fd5b670de0b6b3a764000081610cde91906139cd565b60088190555050565b5f610cf3848484612311565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610d3a612147565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090613b69565b60405180910390fd5b610dcd85610dc5612147565b85840361214e565b60019150509392505050565b5f6012905090565b610de9612147565b73ffffffffffffffffffffffffffffffffffffffff16610e076117e0565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490613982565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e979190613782565b602060405180830381865afa158015610eb2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed69190613b9b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f13929190613bc6565b6020604051808303815f875af1158015610f2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f539190613c01565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610f97573d5f803e3d5ffd5b5050565b5f611038610fa7612147565b848460015f610fb4612147565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110339190613c2c565b61214e565b6001905092915050565b61104a612147565b73ffffffffffffffffffffffffffffffffffffffff166110686117e0565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590613982565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390613ca9565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111669190613782565b602060405180830381865afa158015611181573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a59190613b9b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016111e2929190613bc6565b6020604051808303815f875af11580156111fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112229190613c01565b50505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5f9054906101000a900460ff1681565b5f60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600b5481565b6112bf612147565b73ffffffffffffffffffffffffffffffffffffffff166112dd6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613982565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161135890613cf4565b5f6040518083038185875af1925050503d805f8114611392576040519150601f19603f3d011682016040523d82523d5f602084013e611397565b606091505b50509050806113a4575f80fd5b5050565b60105481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611433612147565b73ffffffffffffffffffffffffffffffffffffffff166114516117e0565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613982565b60405180910390fd5b6114b05f612de4565b565b6114ba612147565b73ffffffffffffffffffffffffffffffffffffffff166114d86117e0565b73ffffffffffffffffffffffffffffffffffffffff161461152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590613982565b60405180910390fd5b80600f81905550600f54600e8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f61156e612147565b73ffffffffffffffffffffffffffffffffffffffff1661158c6117e0565b73ffffffffffffffffffffffffffffffffffffffff16146115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613982565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b61160a612147565b73ffffffffffffffffffffffffffffffffffffffff166116286117e0565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590613982565b60405180910390fd5b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60115481565b6116e4612147565b73ffffffffffffffffffffffffffffffffffffffff166117026117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90613982565b60405180910390fd5b600c60019054906101000a900460ff16156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613d52565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611810612147565b73ffffffffffffffffffffffffffffffffffffffff1661182e6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613982565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60125481565b6118af612147565b73ffffffffffffffffffffffffffffffffffffffff166118cd6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613982565b60405180910390fd5b8060118190555060115460108190555050565b60606004805461194590613908565b80601f016020809104026020016040519081016040528092919081815260200182805461197190613908565b80156119bc5780601f10611993576101008083540402835291602001916119bc565b820191905f5260205f20905b81548152906001019060200180831161199f57829003601f168201915b5050505050905090565b6119ce612147565b73ffffffffffffffffffffffffffffffffffffffff166119ec6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990613982565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613de0565b60405180910390fd5b611adb8282612ea7565b5050565b5f8060015f611aec612147565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613e6e565b60405180910390fd5b611bba611bb1612147565b8585840361214e565b600191505092915050565b5f611bd8611bd1612147565b8484612311565b6001905092915050565b6015602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611c1a612147565b73ffffffffffffffffffffffffffffffffffffffff16611c386117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590613982565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d28919061361a565b60405180910390a25050565b611d3c612147565b73ffffffffffffffffffffffffffffffffffffffff16611d5a6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613982565b60405180910390fd5b670de0b6b3a76400006103e86014611dc6610bcf565b611dd091906139cd565b611dda9190613a3b565b611de49190613a3b565b811015611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90613efc565b60405180910390fd5b670de0b6b3a764000081611e3a91906139cd565b600a8190555050565b60085481565b5f611e52612147565b73ffffffffffffffffffffffffffffffffffffffff16611e706117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd90613982565b60405180910390fd5b8160098190555060019050919050565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b611f6c612147565b73ffffffffffffffffffffffffffffffffffffffff16611f8a6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790613982565b60405180910390fd5b8060118190555060115460108190555050565b600f5481565b612001612147565b73ffffffffffffffffffffffffffffffffffffffff1661201f6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90613982565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613f8a565b60405180910390fd5b6120ec81612de4565b50565b600a5481565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b390614018565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361222a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612221906140a6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612304919061366d565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690614134565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e4906141c2565b60405180910390fd5b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e9061422a565b60405180910390fd5b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f890614292565b60405180910390fd5b5f81036125185761251383835f612f45565b612ddf565b600c5f9054906101000a900460ff16156129c2576125346117e0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125a257506125726117e0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125da57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f35750600660149054906101000a900460ff16155b156129c157600c60019054906101000a900460ff166126e75760135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806126a7575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd906142fa565b60405180910390fd5b5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612784575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561282b576008548111156127ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c590614388565b60405180910390fd5b600a546127da836113c1565b826127e59190613c2c565b1115612826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281d906143f0565b60405180910390fd5b6129c0565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156128c8575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561291757600854811115612912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129099061447e565b60405180910390fd5b6129bf565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166129be57600a54612971836113c1565b8261297c9190613c2c565b11156129bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b4906143f0565b60405180910390fd5b5b5b5b5b5b5f6129cc306113c1565b90505f60095482101590508080156129f05750600c60029054906101000a900460ff165b8015612a095750600660149054906101000a900460ff16155b8015612a5c575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612aaf575060135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612b07575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15612b76576001600660146101000a81548160ff021916908315150217905550612b44612b3f84612b3a85600b546131ba565b6131ba565b6131d2565b5f4790505f811115612b5a57612b5947613405565b5b5f600660146101000a81548160ff021916908315150217905550505b5f600660149054906101000a900460ff1615905060135f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612c25575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612c2e575f90505b5f8115612dcf5760155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c8c57505f601054115b15612cf257612cb96064612cab6010548861346d90919063ffffffff16565b61348290919063ffffffff16565b905060105460115482612ccc91906139cd565b612cd69190613a3b565b60125f828254612ce69190613c2c565b92505081905550612dac565b60155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d4957505f600e54115b15612dab57612d766064612d68600e548861346d90919063ffffffff16565b61348290919063ffffffff16565b9050600e54600f5482612d8991906139cd565b612d939190613a3b565b60125f828254612da39190613c2c565b925050819055505b5b5f811115612dc057612dbf873083612f45565b5b8085612dcc919061449c565b94505b612dda878787612f45565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612faa90614134565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613018906141c2565b60405180910390fd5b61302c838383613497565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a69061453f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461313d9190613c2c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131a1919061366d565b60405180910390a36131b484848461349c565b50505050565b5f8183116131c857826131ca565b815b905092915050565b5f600267ffffffffffffffff8111156131ee576131ed61455d565b5b60405190808252806020026020018201604052801561321c5781602001602082028036833780820191505090505b50905030815f815181106132335761323261458a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132fa91906145cb565b8160018151811061330e5761330d61458a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613373307f00000000000000000000000000000000000000000000000000000000000000008461214e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016133d49594939291906146e6565b5f604051808303815f87803b1580156133eb575f80fd5b505af11580156133fd573d5f803e3d5ffd5b505050505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015613469573d5f803e3d5ffd5b5050565b5f818361347a91906139cd565b905092915050565b5f818361348f9190613a3b565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6134e3826134a1565b6134ed81856134ab565b93506134fd8185602086016134bb565b613506816134c9565b840191505092915050565b5f6020820190508181035f83015261352981846134d9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61355e82613535565b9050919050565b61356e81613554565b8114613578575f80fd5b50565b5f8135905061358981613565565b92915050565b5f819050919050565b6135a18161358f565b81146135ab575f80fd5b50565b5f813590506135bc81613598565b92915050565b5f80604083850312156135d8576135d7613531565b5b5f6135e58582860161357b565b92505060206135f6858286016135ae565b9150509250929050565b5f8115159050919050565b61361481613600565b82525050565b5f60208201905061362d5f83018461360b565b92915050565b5f6020828403121561364857613647613531565b5b5f6136558482850161357b565b91505092915050565b6136678161358f565b82525050565b5f6020820190506136805f83018461365e565b92915050565b5f6020828403121561369b5761369a613531565b5b5f6136a8848285016135ae565b91505092915050565b5f805f606084860312156136c8576136c7613531565b5b5f6136d58682870161357b565b93505060206136e68682870161357b565b92505060406136f7868287016135ae565b9150509250925092565b5f60ff82169050919050565b61371681613701565b82525050565b5f60208201905061372f5f83018461370d565b92915050565b5f806040838503121561374b5761374a613531565b5b5f6137588582860161357b565b92505060206137698582860161357b565b9150509250929050565b61377c81613554565b82525050565b5f6020820190506137955f830184613773565b92915050565b5f6137a582613535565b9050919050565b6137b58161379b565b82525050565b5f6020820190506137ce5f8301846137ac565b92915050565b5f819050919050565b5f6137f76137f26137ed84613535565b6137d4565b613535565b9050919050565b5f613808826137dd565b9050919050565b5f613819826137fe565b9050919050565b6138298161380f565b82525050565b5f6020820190506138425f830184613820565b92915050565b61385181613600565b811461385b575f80fd5b50565b5f8135905061386c81613848565b92915050565b5f806040838503121561388857613887613531565b5b5f6138958582860161357b565b92505060206138a68582860161385e565b9150509250929050565b5f602082840312156138c5576138c4613531565b5b5f6138d28482850161385e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061391f57607f821691505b602082108103613932576139316138db565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61396c6020836134ab565b915061397782613938565b602082019050919050565b5f6020820190508181035f83015261399981613960565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6139d78261358f565b91506139e28361358f565b92508282026139f08161358f565b91508282048414831517613a0757613a066139a0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613a458261358f565b9150613a508361358f565b925082613a6057613a5f613a0e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f613ac5602f836134ab565b9150613ad082613a6b565b604082019050919050565b5f6020820190508181035f830152613af281613ab9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f613b536028836134ab565b9150613b5e82613af9565b604082019050919050565b5f6020820190508181035f830152613b8081613b47565b9050919050565b5f81519050613b9581613598565b92915050565b5f60208284031215613bb057613baf613531565b5b5f613bbd84828501613b87565b91505092915050565b5f604082019050613bd95f830185613773565b613be6602083018461365e565b9392505050565b5f81519050613bfb81613848565b92915050565b5f60208284031215613c1657613c15613531565b5b5f613c2384828501613bed565b91505092915050565b5f613c368261358f565b9150613c418361358f565b9250828201905080821115613c5957613c586139a0565b5b92915050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f613c93601a836134ab565b9150613c9e82613c5f565b602082019050919050565b5f6020820190508181035f830152613cc081613c87565b9050919050565b5f81905092915050565b50565b5f613cdf5f83613cc7565b9150613cea82613cd1565b5f82019050919050565b5f613cfe82613cd4565b9150819050919050565b7f74726164696e67000000000000000000000000000000000000000000000000005f82015250565b5f613d3c6007836134ab565b9150613d4782613d08565b602082019050919050565b5f6020820190508181035f830152613d6981613d30565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613dca6039836134ab565b9150613dd582613d70565b604082019050919050565b5f6020820190508181035f830152613df781613dbe565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613e586025836134ab565b9150613e6382613dfe565b604082019050919050565b5f6020820190508181035f830152613e8581613e4c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f322e302500000000000000000000000000000000000000000000000000000000602082015250565b5f613ee66024836134ab565b9150613ef182613e8c565b604082019050919050565b5f6020820190508181035f830152613f1381613eda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613f746026836134ab565b9150613f7f82613f1a565b604082019050919050565b5f6020820190508181035f830152613fa181613f68565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6140026024836134ab565b915061400d82613fa8565b604082019050919050565b5f6020820190508181035f83015261402f81613ff6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6140906022836134ab565b915061409b82614036565b604082019050919050565b5f6020820190508181035f8301526140bd81614084565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61411e6025836134ab565b9150614129826140c4565b604082019050919050565b5f6020820190508181035f83015261414b81614112565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6141ac6023836134ab565b91506141b782614152565b604082019050919050565b5f6020820190508181035f8301526141d9816141a0565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6142146012836134ab565b915061421f826141e0565b602082019050919050565b5f6020820190508181035f83015261424181614208565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f61427c6014836134ab565b915061428782614248565b602082019050919050565b5f6020820190508181035f8301526142a981614270565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6142e46016836134ab565b91506142ef826142b0565b602082019050919050565b5f6020820190508181035f830152614311816142d8565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6143726035836134ab565b915061437d82614318565b604082019050919050565b5f6020820190508181035f83015261439f81614366565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6143da6013836134ab565b91506143e5826143a6565b602082019050919050565b5f6020820190508181035f830152614407816143ce565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6144686036836134ab565b91506144738261440e565b604082019050919050565b5f6020820190508181035f8301526144958161445c565b9050919050565b5f6144a68261358f565b91506144b18361358f565b92508282039050818111156144c9576144c86139a0565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6145296026836134ab565b9150614534826144cf565b604082019050919050565b5f6020820190508181035f8301526145568161451d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506145c581613565565b92915050565b5f602082840312156145e0576145df613531565b5b5f6145ed848285016145b7565b91505092915050565b5f819050919050565b5f61461961461461460f846145f6565b6137d4565b61358f565b9050919050565b614629816145ff565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61466181613554565b82525050565b5f6146728383614658565b60208301905092915050565b5f602082019050919050565b5f6146948261462f565b61469e8185614639565b93506146a983614649565b805f5b838110156146d95781516146c08882614667565b97506146cb8361467e565b9250506001810190506146ac565b5085935050505092915050565b5f60a0820190506146f95f83018861365e565b6147066020830187614620565b8181036040830152614718818661468a565b90506147276060830185613773565b614734608083018461365e565b969550505050505056fea264697066735822122098b0b31d3fd8550b40eb6806356adc1a3e979340e5536fed4051884a527c3d0664736f6c634300081a0033
Deployed Bytecode
0x608060405260043610610296575f3560e01c8063857a736b11610159578063c0246668116100c0578063e2f4560511610079578063e2f45605146109fb578063eba4c33314610a25578063ed9120d814610a4d578063f2fde38b14610a77578063f8b45b0514610a9f578063fe575a8714610ac95761029d565b8063c0246668146108df578063c18bc19514610907578063c8c8ebe41461092f578063d257b34f14610959578063d85ba06314610995578063dd62ed3e146109bf5761029d565b806395d89b411161011257806395d89b41146107af5780639a7a23d6146107d9578063a457c2d714610801578063a9059cbb1461083d578063b62496f514610879578063bbc0c742146108b55761029d565b8063857a736b146106cb5780638a8c523c146106f55780638da5cb5b1461070b578063924de9b71461073557806392931b1a1461075d57806395927c25146107875761029d565b80634fbee193116101fd578063712c568e116101b6578063712c568e146105e7578063715018a61461061157806371fc468814610627578063735de9f71461064f578063751039fc146106795780637571336a146106a35761029d565b80634fbee193146104c957806362997f8c14610505578063690d83201461052f5780636a486a8e146105575780636ddd17131461058157806370a08231146105ab5761029d565b8063313ce5671161024f578063313ce567146103d15780633888526d146103fb57806339509351146104115780633f79971b1461044d57806349bd5a5e146104755780634a62bb651461049f5761029d565b806306fdde03146102a1578063095ea7b3146102cb57806310d5de531461030757806318160ddd14610343578063203e727e1461036d57806323b872dd146103955761029d565b3661029d57005b5f80fd5b3480156102ac575f80fd5b506102b5610b05565b6040516102c29190613511565b60405180910390f35b3480156102d6575f80fd5b506102f160048036038101906102ec91906135c2565b610b95565b6040516102fe919061361a565b60405180910390f35b348015610312575f80fd5b5061032d60048036038101906103289190613633565b610bb2565b60405161033a919061361a565b60405180910390f35b34801561034e575f80fd5b50610357610bcf565b604051610364919061366d565b60405180910390f35b348015610378575f80fd5b50610393600480360381019061038e9190613686565b610bd8565b005b3480156103a0575f80fd5b506103bb60048036038101906103b691906136b1565b610ce7565b6040516103c8919061361a565b60405180910390f35b3480156103dc575f80fd5b506103e5610dd9565b6040516103f2919061371c565b60405180910390f35b348015610406575f80fd5b5061040f610de1565b005b34801561041c575f80fd5b50610437600480360381019061043291906135c2565b610f9b565b604051610444919061361a565b60405180910390f35b348015610458575f80fd5b50610473600480360381019061046e9190613735565b611042565b005b348015610480575f80fd5b50610489611228565b6040516104969190613782565b60405180910390f35b3480156104aa575f80fd5b506104b361124d565b6040516104c0919061361a565b60405180910390f35b3480156104d4575f80fd5b506104ef60048036038101906104ea9190613633565b61125f565b6040516104fc919061361a565b60405180910390f35b348015610510575f80fd5b506105196112b1565b604051610526919061366d565b60405180910390f35b34801561053a575f80fd5b5061055560048036038101906105509190613633565b6112b7565b005b348015610562575f80fd5b5061056b6113a8565b604051610578919061366d565b60405180910390f35b34801561058c575f80fd5b506105956113ae565b6040516105a2919061361a565b60405180910390f35b3480156105b6575f80fd5b506105d160048036038101906105cc9190613633565b6113c1565b6040516105de919061366d565b60405180910390f35b3480156105f2575f80fd5b506105fb611406565b60405161060891906137bb565b60405180910390f35b34801561061c575f80fd5b5061062561142b565b005b348015610632575f80fd5b5061064d60048036038101906106489190613686565b6114b2565b005b34801561065a575f80fd5b50610663611541565b604051610670919061382f565b60405180910390f35b348015610684575f80fd5b5061068d611565565b60405161069a919061361a565b60405180910390f35b3480156106ae575f80fd5b506106c960048036038101906106c49190613872565b611602565b005b3480156106d6575f80fd5b506106df6116d6565b6040516106ec919061366d565b60405180910390f35b348015610700575f80fd5b506107096116dc565b005b348015610716575f80fd5b5061071f6117e0565b60405161072c9190613782565b60405180910390f35b348015610740575f80fd5b5061075b600480360381019061075691906138b0565b611808565b005b348015610768575f80fd5b506107716118a1565b60405161077e919061366d565b60405180910390f35b348015610792575f80fd5b506107ad60048036038101906107a89190613686565b6118a7565b005b3480156107ba575f80fd5b506107c3611936565b6040516107d09190613511565b60405180910390f35b3480156107e4575f80fd5b506107ff60048036038101906107fa9190613872565b6119c6565b005b34801561080c575f80fd5b50610827600480360381019061082291906135c2565b611adf565b604051610834919061361a565b60405180910390f35b348015610848575f80fd5b50610863600480360381019061085e91906135c2565b611bc5565b604051610870919061361a565b60405180910390f35b348015610884575f80fd5b5061089f600480360381019061089a9190613633565b611be2565b6040516108ac919061361a565b60405180910390f35b3480156108c0575f80fd5b506108c9611bff565b6040516108d6919061361a565b60405180910390f35b3480156108ea575f80fd5b5061090560048036038101906109009190613872565b611c12565b005b348015610912575f80fd5b5061092d60048036038101906109289190613686565b611d34565b005b34801561093a575f80fd5b50610943611e43565b604051610950919061366d565b60405180910390f35b348015610964575f80fd5b5061097f600480360381019061097a9190613686565b611e49565b60405161098c919061361a565b60405180910390f35b3480156109a0575f80fd5b506109a9611ed6565b6040516109b6919061366d565b60405180910390f35b3480156109ca575f80fd5b506109e560048036038101906109e09190613735565b611edc565b6040516109f2919061366d565b60405180910390f35b348015610a06575f80fd5b50610a0f611f5e565b604051610a1c919061366d565b60405180910390f35b348015610a30575f80fd5b50610a4b6004803603810190610a469190613686565b611f64565b005b348015610a58575f80fd5b50610a61611ff3565b604051610a6e919061366d565b60405180910390f35b348015610a82575f80fd5b50610a9d6004803603810190610a989190613633565b611ff9565b005b348015610aaa575f80fd5b50610ab36120ef565b604051610ac0919061366d565b60405180910390f35b348015610ad4575f80fd5b50610aef6004803603810190610aea9190613633565b6120f5565b604051610afc919061361a565b60405180910390f35b606060038054610b1490613908565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4090613908565b8015610b8b5780601f10610b6257610100808354040283529160200191610b8b565b820191905f5260205f20905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b5f610ba8610ba1612147565b848461214e565b6001905092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b610be0612147565b73ffffffffffffffffffffffffffffffffffffffff16610bfe6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90613982565b60405180910390fd5b670de0b6b3a76400006103e86005610c6a610bcf565b610c7491906139cd565b610c7e9190613a3b565b610c889190613a3b565b811015610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190613adb565b60405180910390fd5b670de0b6b3a764000081610cde91906139cd565b60088190555050565b5f610cf3848484612311565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610d3a612147565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090613b69565b60405180910390fd5b610dcd85610dc5612147565b85840361214e565b60019150509392505050565b5f6012905090565b610de9612147565b73ffffffffffffffffffffffffffffffffffffffff16610e076117e0565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490613982565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e979190613782565b602060405180830381865afa158015610eb2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed69190613b9b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f13929190613bc6565b6020604051808303815f875af1158015610f2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f539190613c01565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610f97573d5f803e3d5ffd5b5050565b5f611038610fa7612147565b848460015f610fb4612147565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110339190613c2c565b61214e565b6001905092915050565b61104a612147565b73ffffffffffffffffffffffffffffffffffffffff166110686117e0565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590613982565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390613ca9565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111669190613782565b602060405180830381865afa158015611181573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a59190613b9b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016111e2929190613bc6565b6020604051808303815f875af11580156111fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112229190613c01565b50505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5f9054906101000a900460ff1681565b5f60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600b5481565b6112bf612147565b73ffffffffffffffffffffffffffffffffffffffff166112dd6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613982565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161135890613cf4565b5f6040518083038185875af1925050503d805f8114611392576040519150601f19603f3d011682016040523d82523d5f602084013e611397565b606091505b50509050806113a4575f80fd5b5050565b60105481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611433612147565b73ffffffffffffffffffffffffffffffffffffffff166114516117e0565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613982565b60405180910390fd5b6114b05f612de4565b565b6114ba612147565b73ffffffffffffffffffffffffffffffffffffffff166114d86117e0565b73ffffffffffffffffffffffffffffffffffffffff161461152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590613982565b60405180910390fd5b80600f81905550600f54600e8190555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f61156e612147565b73ffffffffffffffffffffffffffffffffffffffff1661158c6117e0565b73ffffffffffffffffffffffffffffffffffffffff16146115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613982565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b61160a612147565b73ffffffffffffffffffffffffffffffffffffffff166116286117e0565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590613982565b60405180910390fd5b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60115481565b6116e4612147565b73ffffffffffffffffffffffffffffffffffffffff166117026117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90613982565b60405180910390fd5b600c60019054906101000a900460ff16156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613d52565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611810612147565b73ffffffffffffffffffffffffffffffffffffffff1661182e6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613982565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60125481565b6118af612147565b73ffffffffffffffffffffffffffffffffffffffff166118cd6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613982565b60405180910390fd5b8060118190555060115460108190555050565b60606004805461194590613908565b80601f016020809104026020016040519081016040528092919081815260200182805461197190613908565b80156119bc5780601f10611993576101008083540402835291602001916119bc565b820191905f5260205f20905b81548152906001019060200180831161199f57829003601f168201915b5050505050905090565b6119ce612147565b73ffffffffffffffffffffffffffffffffffffffff166119ec6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990613982565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613de0565b60405180910390fd5b611adb8282612ea7565b5050565b5f8060015f611aec612147565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613e6e565b60405180910390fd5b611bba611bb1612147565b8585840361214e565b600191505092915050565b5f611bd8611bd1612147565b8484612311565b6001905092915050565b6015602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611c1a612147565b73ffffffffffffffffffffffffffffffffffffffff16611c386117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590613982565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d28919061361a565b60405180910390a25050565b611d3c612147565b73ffffffffffffffffffffffffffffffffffffffff16611d5a6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613982565b60405180910390fd5b670de0b6b3a76400006103e86014611dc6610bcf565b611dd091906139cd565b611dda9190613a3b565b611de49190613a3b565b811015611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90613efc565b60405180910390fd5b670de0b6b3a764000081611e3a91906139cd565b600a8190555050565b60085481565b5f611e52612147565b73ffffffffffffffffffffffffffffffffffffffff16611e706117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd90613982565b60405180910390fd5b8160098190555060019050919050565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b611f6c612147565b73ffffffffffffffffffffffffffffffffffffffff16611f8a6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790613982565b60405180910390fd5b8060118190555060115460108190555050565b600f5481565b612001612147565b73ffffffffffffffffffffffffffffffffffffffff1661201f6117e0565b73ffffffffffffffffffffffffffffffffffffffff1614612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90613982565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613f8a565b60405180910390fd5b6120ec81612de4565b50565b600a5481565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b390614018565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361222a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612221906140a6565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612304919061366d565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690614134565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e4906141c2565b60405180910390fd5b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e9061422a565b60405180910390fd5b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f890614292565b60405180910390fd5b5f81036125185761251383835f612f45565b612ddf565b600c5f9054906101000a900460ff16156129c2576125346117e0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125a257506125726117e0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125da57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f35750600660149054906101000a900460ff16155b156129c157600c60019054906101000a900460ff166126e75760135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806126a7575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd906142fa565b60405180910390fd5b5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612784575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561282b576008548111156127ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c590614388565b60405180910390fd5b600a546127da836113c1565b826127e59190613c2c565b1115612826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281d906143f0565b60405180910390fd5b6129c0565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156128c8575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561291757600854811115612912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129099061447e565b60405180910390fd5b6129bf565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166129be57600a54612971836113c1565b8261297c9190613c2c565b11156129bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b4906143f0565b60405180910390fd5b5b5b5b5b5b5f6129cc306113c1565b90505f60095482101590508080156129f05750600c60029054906101000a900460ff165b8015612a095750600660149054906101000a900460ff16155b8015612a5c575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612aaf575060135f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612b07575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15612b76576001600660146101000a81548160ff021916908315150217905550612b44612b3f84612b3a85600b546131ba565b6131ba565b6131d2565b5f4790505f811115612b5a57612b5947613405565b5b5f600660146101000a81548160ff021916908315150217905550505b5f600660149054906101000a900460ff1615905060135f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612c25575060135f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612c2e575f90505b5f8115612dcf5760155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c8c57505f601054115b15612cf257612cb96064612cab6010548861346d90919063ffffffff16565b61348290919063ffffffff16565b905060105460115482612ccc91906139cd565b612cd69190613a3b565b60125f828254612ce69190613c2c565b92505081905550612dac565b60155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d4957505f600e54115b15612dab57612d766064612d68600e548861346d90919063ffffffff16565b61348290919063ffffffff16565b9050600e54600f5482612d8991906139cd565b612d939190613a3b565b60125f828254612da39190613c2c565b925050819055505b5b5f811115612dc057612dbf873083612f45565b5b8085612dcc919061449c565b94505b612dda878787612f45565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612faa90614134565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613021576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613018906141c2565b60405180910390fd5b61302c838383613497565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a69061453f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461313d9190613c2c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131a1919061366d565b60405180910390a36131b484848461349c565b50505050565b5f8183116131c857826131ca565b815b905092915050565b5f600267ffffffffffffffff8111156131ee576131ed61455d565b5b60405190808252806020026020018201604052801561321c5781602001602082028036833780820191505090505b50905030815f815181106132335761323261458a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132fa91906145cb565b8160018151811061330e5761330d61458a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613373307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461214e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016133d49594939291906146e6565b5f604051808303815f87803b1580156133eb575f80fd5b505af11580156133fd573d5f803e3d5ffd5b505050505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015613469573d5f803e3d5ffd5b5050565b5f818361347a91906139cd565b905092915050565b5f818361348f9190613a3b565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6134e3826134a1565b6134ed81856134ab565b93506134fd8185602086016134bb565b613506816134c9565b840191505092915050565b5f6020820190508181035f83015261352981846134d9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61355e82613535565b9050919050565b61356e81613554565b8114613578575f80fd5b50565b5f8135905061358981613565565b92915050565b5f819050919050565b6135a18161358f565b81146135ab575f80fd5b50565b5f813590506135bc81613598565b92915050565b5f80604083850312156135d8576135d7613531565b5b5f6135e58582860161357b565b92505060206135f6858286016135ae565b9150509250929050565b5f8115159050919050565b61361481613600565b82525050565b5f60208201905061362d5f83018461360b565b92915050565b5f6020828403121561364857613647613531565b5b5f6136558482850161357b565b91505092915050565b6136678161358f565b82525050565b5f6020820190506136805f83018461365e565b92915050565b5f6020828403121561369b5761369a613531565b5b5f6136a8848285016135ae565b91505092915050565b5f805f606084860312156136c8576136c7613531565b5b5f6136d58682870161357b565b93505060206136e68682870161357b565b92505060406136f7868287016135ae565b9150509250925092565b5f60ff82169050919050565b61371681613701565b82525050565b5f60208201905061372f5f83018461370d565b92915050565b5f806040838503121561374b5761374a613531565b5b5f6137588582860161357b565b92505060206137698582860161357b565b9150509250929050565b61377c81613554565b82525050565b5f6020820190506137955f830184613773565b92915050565b5f6137a582613535565b9050919050565b6137b58161379b565b82525050565b5f6020820190506137ce5f8301846137ac565b92915050565b5f819050919050565b5f6137f76137f26137ed84613535565b6137d4565b613535565b9050919050565b5f613808826137dd565b9050919050565b5f613819826137fe565b9050919050565b6138298161380f565b82525050565b5f6020820190506138425f830184613820565b92915050565b61385181613600565b811461385b575f80fd5b50565b5f8135905061386c81613848565b92915050565b5f806040838503121561388857613887613531565b5b5f6138958582860161357b565b92505060206138a68582860161385e565b9150509250929050565b5f602082840312156138c5576138c4613531565b5b5f6138d28482850161385e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061391f57607f821691505b602082108103613932576139316138db565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61396c6020836134ab565b915061397782613938565b602082019050919050565b5f6020820190508181035f83015261399981613960565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6139d78261358f565b91506139e28361358f565b92508282026139f08161358f565b91508282048414831517613a0757613a066139a0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613a458261358f565b9150613a508361358f565b925082613a6057613a5f613a0e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f613ac5602f836134ab565b9150613ad082613a6b565b604082019050919050565b5f6020820190508181035f830152613af281613ab9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f613b536028836134ab565b9150613b5e82613af9565b604082019050919050565b5f6020820190508181035f830152613b8081613b47565b9050919050565b5f81519050613b9581613598565b92915050565b5f60208284031215613bb057613baf613531565b5b5f613bbd84828501613b87565b91505092915050565b5f604082019050613bd95f830185613773565b613be6602083018461365e565b9392505050565b5f81519050613bfb81613848565b92915050565b5f60208284031215613c1657613c15613531565b5b5f613c2384828501613bed565b91505092915050565b5f613c368261358f565b9150613c418361358f565b9250828201905080821115613c5957613c586139a0565b5b92915050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f613c93601a836134ab565b9150613c9e82613c5f565b602082019050919050565b5f6020820190508181035f830152613cc081613c87565b9050919050565b5f81905092915050565b50565b5f613cdf5f83613cc7565b9150613cea82613cd1565b5f82019050919050565b5f613cfe82613cd4565b9150819050919050565b7f74726164696e67000000000000000000000000000000000000000000000000005f82015250565b5f613d3c6007836134ab565b9150613d4782613d08565b602082019050919050565b5f6020820190508181035f830152613d6981613d30565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613dca6039836134ab565b9150613dd582613d70565b604082019050919050565b5f6020820190508181035f830152613df781613dbe565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613e586025836134ab565b9150613e6382613dfe565b604082019050919050565b5f6020820190508181035f830152613e8581613e4c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f322e302500000000000000000000000000000000000000000000000000000000602082015250565b5f613ee66024836134ab565b9150613ef182613e8c565b604082019050919050565b5f6020820190508181035f830152613f1381613eda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613f746026836134ab565b9150613f7f82613f1a565b604082019050919050565b5f6020820190508181035f830152613fa181613f68565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6140026024836134ab565b915061400d82613fa8565b604082019050919050565b5f6020820190508181035f83015261402f81613ff6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6140906022836134ab565b915061409b82614036565b604082019050919050565b5f6020820190508181035f8301526140bd81614084565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61411e6025836134ab565b9150614129826140c4565b604082019050919050565b5f6020820190508181035f83015261414b81614112565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6141ac6023836134ab565b91506141b782614152565b604082019050919050565b5f6020820190508181035f8301526141d9816141a0565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6142146012836134ab565b915061421f826141e0565b602082019050919050565b5f6020820190508181035f83015261424181614208565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f61427c6014836134ab565b915061428782614248565b602082019050919050565b5f6020820190508181035f8301526142a981614270565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6142e46016836134ab565b91506142ef826142b0565b602082019050919050565b5f6020820190508181035f830152614311816142d8565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6143726035836134ab565b915061437d82614318565b604082019050919050565b5f6020820190508181035f83015261439f81614366565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6143da6013836134ab565b91506143e5826143a6565b602082019050919050565b5f6020820190508181035f830152614407816143ce565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6144686036836134ab565b91506144738261440e565b604082019050919050565b5f6020820190508181035f8301526144958161445c565b9050919050565b5f6144a68261358f565b91506144b18361358f565b92508282039050818111156144c9576144c86139a0565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6145296026836134ab565b9150614534826144cf565b604082019050919050565b5f6020820190508181035f8301526145568161451d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506145c581613565565b92915050565b5f602082840312156145e0576145df613531565b5b5f6145ed848285016145b7565b91505092915050565b5f819050919050565b5f61461961461461460f846145f6565b6137d4565b61358f565b9050919050565b614629816145ff565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61466181613554565b82525050565b5f6146728383614658565b60208301905092915050565b5f602082019050919050565b5f6146948261462f565b61469e8185614639565b93506146a983614649565b805f5b838110156146d95781516146c08882614667565b97506146cb8361467e565b9250506001810190506146ac565b5085935050505092915050565b5f60a0820190506146f95f83018861365e565b6147066020830187614620565b8181036040830152614718818661468a565b90506147276060830185613773565b614734608083018461365e565b969550505050505056fea264697066735822122098b0b31d3fd8550b40eb6806356adc1a3e979340e5536fed4051884a527c3d0664736f6c634300081a0033
Deployed Bytecode Sourcemap
456:11881:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4255:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1377:63:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3208:108:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3970:277:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4906:492:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3050:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11589:250:7;;;;;;;;;;;;;:::i;:::-;;5807:215:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11847:313:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;586:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;842:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6032:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;808:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12168:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1130:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;922:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3379:127:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;653:33:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1745:103:6;;;;;;;;;;;;;:::i;:::-;;4895:136:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;530:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3597:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4522:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1165:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3388:157;;;;;;;;;;;;;:::i;:::-;;1094:87:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4787:100:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1200:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5187:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2307:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5522:306:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6525:413:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3719:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:57:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;882:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5332:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4255:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;695:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3788:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1062:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3957:151:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;737:33:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5039:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1096:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2003:201:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;777:24:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6166:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2088:100:1;2142:13;2175:5;2168:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088:100;:::o;4255:169::-;4338:4;4355:39;4364:12;:10;:12::i;:::-;4378:7;4387:6;4355:8;:39::i;:::-;4412:4;4405:11;;4255:169;;;;:::o;1377:63:7:-;;;;;;;;;;;;;;;;;;;;;;:::o;3208:108:1:-;3269:7;3296:12;;3289:19;;3208:108;:::o;3970:277:7:-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4107:4:7::1;4099;4094:1;4078:13;:11;:13::i;:::-;:17;;;;:::i;:::-;4077:26;;;;:::i;:::-;4076:35;;;;:::i;:::-;4066:6;:45;;4044:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;4230:8;4220:6;:19;;;;:::i;:::-;4197:20;:42;;;;3970:277:::0;:::o;4906:492:1:-;5046:4;5063:36;5073:6;5081:9;5092:6;5063:9;:36::i;:::-;5112:24;5139:11;:19;5151:6;5139:19;;;;;;;;;;;;;;;:33;5159:12;:10;:12::i;:::-;5139:33;;;;;;;;;;;;;;;;5112:60;;5211:6;5191:16;:26;;5183:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5298:57;5307:6;5315:12;:10;:12::i;:::-;5348:6;5329:16;:25;5298:8;:57::i;:::-;5386:4;5379:11;;;4906:492;;;;;:::o;3050:93::-;3108:5;3133:2;3126:9;;3050:93;:::o;11589:250:7:-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11643:15:7::1;11676:4;11661:31;;;11701:4;11661:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11643:64;;11733:4;11718:30;;;11749:10;11761:7;11718:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11788:10;11780:28;;:51;11809:21;11780:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;11632:207;11589:250::o:0;5807:215:1:-;5895:4;5912:80;5921:12;:10;:12::i;:::-;5935:7;5981:10;5944:11;:25;5956:12;:10;:12::i;:::-;5944:25;;;;;;;;;;;;;;;:34;5970:7;5944:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5912:8;:80::i;:::-;6010:4;6003:11;;5807:215;;;;:::o;11847:313:7:-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11985:1:7::1;11967:20;;:6;:20;;::::0;11959:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12029:24;12063:6;12056:24;;;12089:4;12056:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12029:66;;12113:6;12106:23;;;12130:3;12135:16;12106:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11948:212;11847:313:::0;;:::o;586:28::-;;;;;;;;;;;;;:::o;842:33::-;;;;;;;;;;;;;:::o;6032:126::-;6098:4;6122:19;:28;6142:7;6122:28;;;;;;;;;;;;;;;;;;;;;;;;;6115:35;;6032:126;;;:::o;808:25::-;;;;:::o;12168:166::-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12236:12:7::1;12254:6;:11;;12273:21;12254:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12235:64;;;12318:7;12310:16;;;::::0;::::1;;12224:110;12168:166:::0;:::o;1130:28::-;;;;:::o;922:31::-;;;;;;;;;;;;;:::o;3379:127:1:-;3453:7;3480:9;:18;3490:7;3480:18;;;;;;;;;;;;;;;;3473:25;;3379:127;;;:::o;653:33:7:-;;;;;;;;;;;;;:::o;1745:103:6:-;1325:12;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1810:30:::1;1837:1;1810:18;:30::i;:::-;1745:103::o:0;4895:136:7:-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4979:8:7::1;4966:10;:21;;;;5013:10;;4998:12;:25;;;;4895:136:::0;:::o;530:49::-;;;:::o;3597:121::-;3649:4;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3683:5:7::1;3666:14;;:22;;;;;;;;;;;;;;;;;;3706:4;3699:11;;3597:121:::0;:::o;4522:169::-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4679:4:7::1;4637:31;:39;4669:6;4637:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;4522:169:::0;;:::o;1165:26::-;;;;:::o;3388:157::-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3452:13:7::1;;;;;;;;;;;3451:14;3443:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;3504:4;3488:13;;:20;;;;;;;;;;;;;;;;;;3533:4;3519:11;;:18;;;;;;;;;;;;;;;;;;3388:157::o:0;1094:87:6:-;1140:7;1167:6;;;;;;;;;;;1160:13;;1094:87;:::o;4787:100:7:-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4872:7:7::1;4858:11;;:21;;;;;;;;;;;;;;;;;;4787:100:::0;:::o;1200:28::-;;;;:::o;5187:137::-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5270:8:7::1;5256:11;:22;;;;5305:11;;5289:13;:27;;;;5187:137:::0;:::o;2307:104:1:-;2363:13;2396:7;2389:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2307:104;:::o;5522:306:7:-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5668:13:7::1;;;;;;;;;;;5660:21;;:4;:21;;::::0;5638:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5779:41;5808:4;5814:5;5779:28;:41::i;:::-;5522:306:::0;;:::o;6525:413:1:-;6618:4;6635:24;6662:11;:25;6674:12;:10;:12::i;:::-;6662:25;;;;;;;;;;;;;;;:34;6688:7;6662:34;;;;;;;;;;;;;;;;6635:61;;6735:15;6715:16;:35;;6707:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6828:67;6837:12;:10;:12::i;:::-;6851:7;6879:15;6860:16;:34;6828:8;:67::i;:::-;6926:4;6919:11;;;6525:413;;;;:::o;3719:175::-;3805:4;3822:42;3832:12;:10;:12::i;:::-;3846:9;3857:6;3822:9;:42::i;:::-;3882:4;3875:11;;3719:175;;;;:::o;1598:57:7:-;;;;;;;;;;;;;;;;;;;;;;:::o;882:33::-;;;;;;;;;;;;;:::o;5332:182::-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5448:8:7::1;5417:19;:28;5437:7;5417:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;5488:7;5472:34;;;5497:8;5472:34;;;;;;:::i;:::-;;;;;;;;5332:182:::0;;:::o;4255:259::-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4396:4:7::1;4388;4382:2;4366:13;:11;:13::i;:::-;:18;;;;:::i;:::-;4365:27;;;;:::i;:::-;4364:36;;;;:::i;:::-;4354:6;:46;;4332:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;4497:8;4487:6;:19;;;;:::i;:::-;4475:9;:31;;;;4255:259:::0;:::o;695:35::-;;;;:::o;3788:174::-;3885:4;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3923:9:7::1;3902:18;:30;;;;3950:4;3943:11;;3788:174:::0;;;:::o;1062:27::-;;;;:::o;3957:151:1:-;4046:7;4073:11;:18;4085:5;4073:18;;;;;;;;;;;;;;;:27;4092:7;4073:27;;;;;;;;;;;;;;;;4066:34;;3957:151;;;;:::o;737:33:7:-;;;;:::o;5039:140::-;1325:12:6;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5125:8:7::1;5111:11;:22;;;;5160:11;;5144:13;:27;;;;5039:140:::0;:::o;1096:25::-;;;;:::o;2003:201:6:-;1325:12;:10;:12::i;:::-;1314:23;;:7;:5;:7::i;:::-;:23;;;1306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2112:1:::1;2092:22;;:8;:22;;::::0;2084:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2168:28;2187:8;2168:18;:28::i;:::-;2003:201:::0;:::o;777:24:7:-;;;;:::o;6166:113::-;6227:4;6251:11;:20;6263:7;6251:20;;;;;;;;;;;;;;;;;;;;;;;;;6244:27;;6166:113;;;:::o;672:98:0:-;725:7;752:10;745:17;;672:98;:::o;10209:380:1:-;10362:1;10345:19;;:5;:19;;;10337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10443:1;10424:21;;:7;:21;;;10416:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10527:6;10497:11;:18;10509:5;10497:18;;;;;;;;;;;;;;;:27;10516:7;10497:27;;;;;;;;;;;;;;;:36;;;;10565:7;10549:32;;10558:5;10549:32;;;10574:6;10549:32;;;;;;:::i;:::-;;;;;;;;10209:380;;;:::o;6287:3970:7:-;6435:1;6419:18;;:4;:18;;;6411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6512:1;6498:16;;:2;:16;;;6490:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6574:11;:17;6586:4;6574:17;;;;;;;;;;;;;;;;;;;;;;;;;6573:18;6565:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;6634:11;:15;6646:2;6634:15;;;;;;;;;;;;;;;;;;;;;;;;;6633:16;6625:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;6701:1;6691:6;:11;6687:93;;6719:28;6735:4;6741:2;6745:1;6719:15;:28::i;:::-;6762:7;;6687:93;6796:14;;;;;;;;;;;6792:1714;;;6857:7;:5;:7::i;:::-;6849:15;;:4;:15;;;;:49;;;;;6891:7;:5;:7::i;:::-;6885:13;;:2;:13;;;;6849:49;:86;;;;;6933:1;6919:16;;:2;:16;;;;6849:86;:116;;;;;6957:8;;;;;;;;;;;6956:9;6849:116;6827:1668;;;7005:13;;;;;;;;;;;7000:223;;7077:19;:25;7097:4;7077:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;7106:19;:23;7126:2;7106:23;;;;;;;;;;;;;;;;;;;;;;;;;7077:52;7043:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;7000:223;7297:25;:31;7323:4;7297:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;7354:31;:35;7386:2;7354:35;;;;;;;;;;;;;;;;;;;;;;;;;7353:36;7297:92;7271:1209;;;7476:20;;7466:6;:30;;7432:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;7684:9;;7667:13;7677:2;7667:9;:13::i;:::-;7658:6;:22;;;;:::i;:::-;:35;;7624:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;7271:1209;;;7862:25;:29;7888:2;7862:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;7917:31;:37;7949:4;7917:37;;;;;;;;;;;;;;;;;;;;;;;;;7916:38;7862:92;7836:644;;;8041:20;;8031:6;:30;;7997:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;7836:644;;;8198:31;:35;8230:2;8198:35;;;;;;;;;;;;;;;;;;;;;;;;;8193:287;;8380:9;;8363:13;8373:2;8363:9;:13::i;:::-;8354:6;:22;;;;:::i;:::-;:35;;8320:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;8193:287;7836:644;7271:1209;6827:1668;6792:1714;8518:28;8549:24;8567:4;8549:9;:24::i;:::-;8518:55;;8586:12;8625:18;;8601:20;:42;;8586:57;;8674:7;:35;;;;;8698:11;;;;;;;;;;;8674:35;:61;;;;;8727:8;;;;;;;;;;;8726:9;8674:61;:104;;;;;8753:19;:25;8773:4;8753:25;;;;;;;;;;;;;;;;;;;;;;;;;8752:26;8674:104;:145;;;;;8796:19;:23;8816:2;8796:23;;;;;;;;;;;;;;;;;;;;;;;;;8795:24;8674:145;:181;;;;;8842:13;;;;;;;;;;;8836:19;;:2;:19;;;8674:181;8656:552;;;8893:4;8882:8;;:15;;;;;;;;;;;;;;;;;;8914:68;8931:50;8935:6;8943:37;8947:20;8969:10;;8943:3;:37::i;:::-;8931:3;:50::i;:::-;8914:16;:68::i;:::-;8999:26;9028:21;8999:50;;9091:1;9070:18;:22;9066:98;;;9113:35;9126:21;9113:12;:35::i;:::-;9066:98;9191:5;9180:8;;:16;;;;;;;;;;;;;;;;;;8867:341;8656:552;9220:12;9236:8;;;;;;;;;;;9235:9;9220:24;;9346:19;:25;9366:4;9346:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;9375:19;:23;9395:2;9375:23;;;;;;;;;;;;;;;;;;;;;;;;;9346:52;9342:100;;;9425:5;9415:15;;9342:100;9454:12;9559:7;9555:649;;;9611:25;:29;9637:2;9611:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;9660:1;9644:13;;:17;9611:50;9607:448;;;9689:34;9719:3;9689:25;9700:13;;9689:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;9682:41;;9782:13;;9767:11;;9760:4;:18;;;;:::i;:::-;9759:36;;;;:::i;:::-;9742:13;;:53;;;;;;;:::i;:::-;;;;;;;;9607:448;;;9857:25;:31;9883:4;9857:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;9907:1;9892:12;;:16;9857:51;9853:202;;;9936:33;9965:3;9936:24;9947:12;;9936:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;9929:40;;10027:12;;10013:10;;10006:4;:17;;;;:::i;:::-;10005:34;;;;:::i;:::-;9988:13;;:51;;;;;;;:::i;:::-;;;;;;;;9853:202;9607:448;10082:1;10075:4;:8;10071:91;;;10104:42;10120:4;10134;10141;10104:15;:42::i;:::-;10071:91;10188:4;10178:14;;;;;:::i;:::-;;;9555:649;10216:33;10232:4;10238:2;10242:6;10216:15;:33::i;:::-;6400:3857;;;;6287:3970;;;;:::o;2364:191:6:-;2438:16;2457:6;;;;;;;;;;;2438:25;;2483:8;2474:6;;:17;;;;;;;;;;;;;;;;;;2538:8;2507:40;;2528:8;2507:40;;;;;;;;;;;;2427:128;2364:191;:::o;5836:188:7:-;5953:5;5919:25;:31;5945:4;5919:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;6010:5;5976:40;;6004:4;5976:40;;;;;;;;;;;;5836:188;;:::o;7428:733:1:-;7586:1;7568:20;;:6;:20;;;7560:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7670:1;7649:23;;:9;:23;;;7641:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7725:47;7746:6;7754:9;7765:6;7725:20;:47::i;:::-;7785:21;7809:9;:17;7819:6;7809:17;;;;;;;;;;;;;;;;7785:41;;7862:6;7845:13;:23;;7837:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7983:6;7967:13;:22;7947:9;:17;7957:6;7947:17;;;;;;;;;;;;;;;:42;;;;8035:6;8011:9;:20;8021:9;8011:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;8076:9;8059:35;;8068:6;8059:35;;;8087:6;8059:35;;;;;;:::i;:::-;;;;;;;;8107:46;8127:6;8135:9;8146:6;8107:19;:46::i;:::-;7549:612;7428:733;;;:::o;10266:107:7:-;10323:7;10355:1;10351;:5;10350:15;;10364:1;10350:15;;;10360:1;10350:15;10343:22;;10266:107;;;;:::o;10381:583::-;10507:21;10545:1;10531:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10507:40;;10576:4;10558;10563:1;10558:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;10602:13;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10592:4;10597:1;10592:7;;;;;;;;:::i;:::-;;;;;;;:30;;;;;;;;;;;10635:60;10652:4;10667:13;10683:11;10635:8;:60::i;:::-;10734:13;:64;;;10813:11;10839:1;10883:4;10910;10930:15;10734:222;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10436:528;10381:583;:::o;10972:92::-;11029:10;;;;;;;;;;;:19;;:27;11049:6;11029:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10972:92;:::o;3320:98:8:-;3378:7;3409:1;3405;:5;;;;:::i;:::-;3398:12;;3320:98;;;;:::o;3719:::-;3777:7;3808:1;3804;:5;;;;:::i;:::-;3797:12;;3719:98;;;;:::o;11189:125:1:-;;;;:::o;11918:124::-;;;;:::o;7:99:9:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:329::-;4085:6;4134:2;4122:9;4113:7;4109:23;4105:32;4102:119;;;4140:79;;:::i;:::-;4102:119;4260:1;4285:53;4330:7;4321:6;4310:9;4306:22;4285:53;:::i;:::-;4275:63;;4231:117;4026:329;;;;:::o;4361:619::-;4438:6;4446;4454;4503:2;4491:9;4482:7;4478:23;4474:32;4471:119;;;4509:79;;:::i;:::-;4471:119;4629:1;4654:53;4699:7;4690:6;4679:9;4675:22;4654:53;:::i;:::-;4644:63;;4600:117;4756:2;4782:53;4827:7;4818:6;4807:9;4803:22;4782:53;:::i;:::-;4772:63;;4727:118;4884:2;4910:53;4955:7;4946:6;4935:9;4931:22;4910:53;:::i;:::-;4900:63;;4855:118;4361:619;;;;;:::o;4986:86::-;5021:7;5061:4;5054:5;5050:16;5039:27;;4986:86;;;:::o;5078:112::-;5161:22;5177:5;5161:22;:::i;:::-;5156:3;5149:35;5078:112;;:::o;5196:214::-;5285:4;5323:2;5312:9;5308:18;5300:26;;5336:67;5400:1;5389:9;5385:17;5376:6;5336:67;:::i;:::-;5196:214;;;;:::o;5416:474::-;5484:6;5492;5541:2;5529:9;5520:7;5516:23;5512:32;5509:119;;;5547:79;;:::i;:::-;5509:119;5667:1;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;:::i;:::-;5682:63;;5638:117;5794:2;5820:53;5865:7;5856:6;5845:9;5841:22;5820:53;:::i;:::-;5810:63;;5765:118;5416:474;;;;;:::o;5896:118::-;5983:24;6001:5;5983:24;:::i;:::-;5978:3;5971:37;5896:118;;:::o;6020:222::-;6113:4;6151:2;6140:9;6136:18;6128:26;;6164:71;6232:1;6221:9;6217:17;6208:6;6164:71;:::i;:::-;6020:222;;;;:::o;6248:104::-;6293:7;6322:24;6340:5;6322:24;:::i;:::-;6311:35;;6248:104;;;:::o;6358:142::-;6461:32;6487:5;6461:32;:::i;:::-;6456:3;6449:45;6358:142;;:::o;6506:254::-;6615:4;6653:2;6642:9;6638:18;6630:26;;6666:87;6750:1;6739:9;6735:17;6726:6;6666:87;:::i;:::-;6506:254;;;;:::o;6766:60::-;6794:3;6815:5;6808:12;;6766:60;;;:::o;6832:142::-;6882:9;6915:53;6933:34;6942:24;6960:5;6942:24;:::i;:::-;6933:34;:::i;:::-;6915:53;:::i;:::-;6902:66;;6832:142;;;:::o;6980:126::-;7030:9;7063:37;7094:5;7063:37;:::i;:::-;7050:50;;6980:126;;;:::o;7112:152::-;7188:9;7221:37;7252:5;7221:37;:::i;:::-;7208:50;;7112:152;;;:::o;7270:183::-;7383:63;7440:5;7383:63;:::i;:::-;7378:3;7371:76;7270:183;;:::o;7459:274::-;7578:4;7616:2;7605:9;7601:18;7593:26;;7629:97;7723:1;7712:9;7708:17;7699:6;7629:97;:::i;:::-;7459:274;;;;:::o;7739:116::-;7809:21;7824:5;7809:21;:::i;:::-;7802:5;7799:32;7789:60;;7845:1;7842;7835:12;7789:60;7739:116;:::o;7861:133::-;7904:5;7942:6;7929:20;7920:29;;7958:30;7982:5;7958:30;:::i;:::-;7861:133;;;;:::o;8000:468::-;8065:6;8073;8122:2;8110:9;8101:7;8097:23;8093:32;8090:119;;;8128:79;;:::i;:::-;8090:119;8248:1;8273:53;8318:7;8309:6;8298:9;8294:22;8273:53;:::i;:::-;8263:63;;8219:117;8375:2;8401:50;8443:7;8434:6;8423:9;8419:22;8401:50;:::i;:::-;8391:60;;8346:115;8000:468;;;;;:::o;8474:323::-;8530:6;8579:2;8567:9;8558:7;8554:23;8550:32;8547:119;;;8585:79;;:::i;:::-;8547:119;8705:1;8730:50;8772:7;8763:6;8752:9;8748:22;8730:50;:::i;:::-;8720:60;;8676:114;8474:323;;;;:::o;8803:180::-;8851:77;8848:1;8841:88;8948:4;8945:1;8938:15;8972:4;8969:1;8962:15;8989:320;9033:6;9070:1;9064:4;9060:12;9050:22;;9117:1;9111:4;9107:12;9138:18;9128:81;;9194:4;9186:6;9182:17;9172:27;;9128:81;9256:2;9248:6;9245:14;9225:18;9222:38;9219:84;;9275:18;;:::i;:::-;9219:84;9040:269;8989:320;;;:::o;9315:182::-;9455:34;9451:1;9443:6;9439:14;9432:58;9315:182;:::o;9503:366::-;9645:3;9666:67;9730:2;9725:3;9666:67;:::i;:::-;9659:74;;9742:93;9831:3;9742:93;:::i;:::-;9860:2;9855:3;9851:12;9844:19;;9503:366;;;:::o;9875:419::-;10041:4;10079:2;10068:9;10064:18;10056:26;;10128:9;10122:4;10118:20;10114:1;10103:9;10099:17;10092:47;10156:131;10282:4;10156:131;:::i;:::-;10148:139;;9875:419;;;:::o;10300:180::-;10348:77;10345:1;10338:88;10445:4;10442:1;10435:15;10469:4;10466:1;10459:15;10486:410;10526:7;10549:20;10567:1;10549:20;:::i;:::-;10544:25;;10583:20;10601:1;10583:20;:::i;:::-;10578:25;;10638:1;10635;10631:9;10660:30;10678:11;10660:30;:::i;:::-;10649:41;;10839:1;10830:7;10826:15;10823:1;10820:22;10800:1;10793:9;10773:83;10750:139;;10869:18;;:::i;:::-;10750:139;10534:362;10486:410;;;;:::o;10902:180::-;10950:77;10947:1;10940:88;11047:4;11044:1;11037:15;11071:4;11068:1;11061:15;11088:185;11128:1;11145:20;11163:1;11145:20;:::i;:::-;11140:25;;11179:20;11197:1;11179:20;:::i;:::-;11174:25;;11218:1;11208:35;;11223:18;;:::i;:::-;11208:35;11265:1;11262;11258:9;11253:14;;11088:185;;;;:::o;11279:234::-;11419:34;11415:1;11407:6;11403:14;11396:58;11488:17;11483:2;11475:6;11471:15;11464:42;11279:234;:::o;11519:366::-;11661:3;11682:67;11746:2;11741:3;11682:67;:::i;:::-;11675:74;;11758:93;11847:3;11758:93;:::i;:::-;11876:2;11871:3;11867:12;11860:19;;11519:366;;;:::o;11891:419::-;12057:4;12095:2;12084:9;12080:18;12072:26;;12144:9;12138:4;12134:20;12130:1;12119:9;12115:17;12108:47;12172:131;12298:4;12172:131;:::i;:::-;12164:139;;11891:419;;;:::o;12316:227::-;12456:34;12452:1;12444:6;12440:14;12433:58;12525:10;12520:2;12512:6;12508:15;12501:35;12316:227;:::o;12549:366::-;12691:3;12712:67;12776:2;12771:3;12712:67;:::i;:::-;12705:74;;12788:93;12877:3;12788:93;:::i;:::-;12906:2;12901:3;12897:12;12890:19;;12549:366;;;:::o;12921:419::-;13087:4;13125:2;13114:9;13110:18;13102:26;;13174:9;13168:4;13164:20;13160:1;13149:9;13145:17;13138:47;13202:131;13328:4;13202:131;:::i;:::-;13194:139;;12921:419;;;:::o;13346:143::-;13403:5;13434:6;13428:13;13419:22;;13450:33;13477:5;13450:33;:::i;:::-;13346:143;;;;:::o;13495:351::-;13565:6;13614:2;13602:9;13593:7;13589:23;13585:32;13582:119;;;13620:79;;:::i;:::-;13582:119;13740:1;13765:64;13821:7;13812:6;13801:9;13797:22;13765:64;:::i;:::-;13755:74;;13711:128;13495:351;;;;:::o;13852:332::-;13973:4;14011:2;14000:9;13996:18;13988:26;;14024:71;14092:1;14081:9;14077:17;14068:6;14024:71;:::i;:::-;14105:72;14173:2;14162:9;14158:18;14149:6;14105:72;:::i;:::-;13852:332;;;;;:::o;14190:137::-;14244:5;14275:6;14269:13;14260:22;;14291:30;14315:5;14291:30;:::i;:::-;14190:137;;;;:::o;14333:345::-;14400:6;14449:2;14437:9;14428:7;14424:23;14420:32;14417:119;;;14455:79;;:::i;:::-;14417:119;14575:1;14600:61;14653:7;14644:6;14633:9;14629:22;14600:61;:::i;:::-;14590:71;;14546:125;14333:345;;;;:::o;14684:191::-;14724:3;14743:20;14761:1;14743:20;:::i;:::-;14738:25;;14777:20;14795:1;14777:20;:::i;:::-;14772:25;;14820:1;14817;14813:9;14806:16;;14841:3;14838:1;14835:10;14832:36;;;14848:18;;:::i;:::-;14832:36;14684:191;;;;:::o;14881:176::-;15021:28;15017:1;15009:6;15005:14;14998:52;14881:176;:::o;15063:366::-;15205:3;15226:67;15290:2;15285:3;15226:67;:::i;:::-;15219:74;;15302:93;15391:3;15302:93;:::i;:::-;15420:2;15415:3;15411:12;15404:19;;15063:366;;;:::o;15435:419::-;15601:4;15639:2;15628:9;15624:18;15616:26;;15688:9;15682:4;15678:20;15674:1;15663:9;15659:17;15652:47;15716:131;15842:4;15716:131;:::i;:::-;15708:139;;15435:419;;;:::o;15860:147::-;15961:11;15998:3;15983:18;;15860:147;;;;:::o;16013:114::-;;:::o;16133:398::-;16292:3;16313:83;16394:1;16389:3;16313:83;:::i;:::-;16306:90;;16405:93;16494:3;16405:93;:::i;:::-;16523:1;16518:3;16514:11;16507:18;;16133:398;;;:::o;16537:379::-;16721:3;16743:147;16886:3;16743:147;:::i;:::-;16736:154;;16907:3;16900:10;;16537:379;;;:::o;16922:157::-;17062:9;17058:1;17050:6;17046:14;17039:33;16922:157;:::o;17085:365::-;17227:3;17248:66;17312:1;17307:3;17248:66;:::i;:::-;17241:73;;17323:93;17412:3;17323:93;:::i;:::-;17441:2;17436:3;17432:12;17425:19;;17085:365;;;:::o;17456:419::-;17622:4;17660:2;17649:9;17645:18;17637:26;;17709:9;17703:4;17699:20;17695:1;17684:9;17680:17;17673:47;17737:131;17863:4;17737:131;:::i;:::-;17729:139;;17456:419;;;:::o;17881:244::-;18021:34;18017:1;18009:6;18005:14;17998:58;18090:27;18085:2;18077:6;18073:15;18066:52;17881:244;:::o;18131:366::-;18273:3;18294:67;18358:2;18353:3;18294:67;:::i;:::-;18287:74;;18370:93;18459:3;18370:93;:::i;:::-;18488:2;18483:3;18479:12;18472:19;;18131:366;;;:::o;18503:419::-;18669:4;18707:2;18696:9;18692:18;18684:26;;18756:9;18750:4;18746:20;18742:1;18731:9;18727:17;18720:47;18784:131;18910:4;18784:131;:::i;:::-;18776:139;;18503:419;;;:::o;18928:224::-;19068:34;19064:1;19056:6;19052:14;19045:58;19137:7;19132:2;19124:6;19120:15;19113:32;18928:224;:::o;19158:366::-;19300:3;19321:67;19385:2;19380:3;19321:67;:::i;:::-;19314:74;;19397:93;19486:3;19397:93;:::i;:::-;19515:2;19510:3;19506:12;19499:19;;19158:366;;;:::o;19530:419::-;19696:4;19734:2;19723:9;19719:18;19711:26;;19783:9;19777:4;19773:20;19769:1;19758:9;19754:17;19747:47;19811:131;19937:4;19811:131;:::i;:::-;19803:139;;19530:419;;;:::o;19955:223::-;20095:34;20091:1;20083:6;20079:14;20072:58;20164:6;20159:2;20151:6;20147:15;20140:31;19955:223;:::o;20184:366::-;20326:3;20347:67;20411:2;20406:3;20347:67;:::i;:::-;20340:74;;20423:93;20512:3;20423:93;:::i;:::-;20541:2;20536:3;20532:12;20525:19;;20184:366;;;:::o;20556:419::-;20722:4;20760:2;20749:9;20745:18;20737:26;;20809:9;20803:4;20799:20;20795:1;20784:9;20780:17;20773:47;20837:131;20963:4;20837:131;:::i;:::-;20829:139;;20556:419;;;:::o;20981:225::-;21121:34;21117:1;21109:6;21105:14;21098:58;21190:8;21185:2;21177:6;21173:15;21166:33;20981:225;:::o;21212:366::-;21354:3;21375:67;21439:2;21434:3;21375:67;:::i;:::-;21368:74;;21451:93;21540:3;21451:93;:::i;:::-;21569:2;21564:3;21560:12;21553:19;;21212:366;;;:::o;21584:419::-;21750:4;21788:2;21777:9;21773:18;21765:26;;21837:9;21831:4;21827:20;21823:1;21812:9;21808:17;21801:47;21865:131;21991:4;21865:131;:::i;:::-;21857:139;;21584:419;;;:::o;22009:223::-;22149:34;22145:1;22137:6;22133:14;22126:58;22218:6;22213:2;22205:6;22201:15;22194:31;22009:223;:::o;22238:366::-;22380:3;22401:67;22465:2;22460:3;22401:67;:::i;:::-;22394:74;;22477:93;22566:3;22477:93;:::i;:::-;22595:2;22590:3;22586:12;22579:19;;22238:366;;;:::o;22610:419::-;22776:4;22814:2;22803:9;22799:18;22791:26;;22863:9;22857:4;22853:20;22849:1;22838:9;22834:17;22827:47;22891:131;23017:4;22891:131;:::i;:::-;22883:139;;22610:419;;;:::o;23035:221::-;23175:34;23171:1;23163:6;23159:14;23152:58;23244:4;23239:2;23231:6;23227:15;23220:29;23035:221;:::o;23262:366::-;23404:3;23425:67;23489:2;23484:3;23425:67;:::i;:::-;23418:74;;23501:93;23590:3;23501:93;:::i;:::-;23619:2;23614:3;23610:12;23603:19;;23262:366;;;:::o;23634:419::-;23800:4;23838:2;23827:9;23823:18;23815:26;;23887:9;23881:4;23877:20;23873:1;23862:9;23858:17;23851:47;23915:131;24041:4;23915:131;:::i;:::-;23907:139;;23634:419;;;:::o;24059:224::-;24199:34;24195:1;24187:6;24183:14;24176:58;24268:7;24263:2;24255:6;24251:15;24244:32;24059:224;:::o;24289:366::-;24431:3;24452:67;24516:2;24511:3;24452:67;:::i;:::-;24445:74;;24528:93;24617:3;24528:93;:::i;:::-;24646:2;24641:3;24637:12;24630:19;;24289:366;;;:::o;24661:419::-;24827:4;24865:2;24854:9;24850:18;24842:26;;24914:9;24908:4;24904:20;24900:1;24889:9;24885:17;24878:47;24942:131;25068:4;24942:131;:::i;:::-;24934:139;;24661:419;;;:::o;25086:222::-;25226:34;25222:1;25214:6;25210:14;25203:58;25295:5;25290:2;25282:6;25278:15;25271:30;25086:222;:::o;25314:366::-;25456:3;25477:67;25541:2;25536:3;25477:67;:::i;:::-;25470:74;;25553:93;25642:3;25553:93;:::i;:::-;25671:2;25666:3;25662:12;25655:19;;25314:366;;;:::o;25686:419::-;25852:4;25890:2;25879:9;25875:18;25867:26;;25939:9;25933:4;25929:20;25925:1;25914:9;25910:17;25903:47;25967:131;26093:4;25967:131;:::i;:::-;25959:139;;25686:419;;;:::o;26111:168::-;26251:20;26247:1;26239:6;26235:14;26228:44;26111:168;:::o;26285:366::-;26427:3;26448:67;26512:2;26507:3;26448:67;:::i;:::-;26441:74;;26524:93;26613:3;26524:93;:::i;:::-;26642:2;26637:3;26633:12;26626:19;;26285:366;;;:::o;26657:419::-;26823:4;26861:2;26850:9;26846:18;26838:26;;26910:9;26904:4;26900:20;26896:1;26885:9;26881:17;26874:47;26938:131;27064:4;26938:131;:::i;:::-;26930:139;;26657:419;;;:::o;27082:170::-;27222:22;27218:1;27210:6;27206:14;27199:46;27082:170;:::o;27258:366::-;27400:3;27421:67;27485:2;27480:3;27421:67;:::i;:::-;27414:74;;27497:93;27586:3;27497:93;:::i;:::-;27615:2;27610:3;27606:12;27599:19;;27258:366;;;:::o;27630:419::-;27796:4;27834:2;27823:9;27819:18;27811:26;;27883:9;27877:4;27873:20;27869:1;27858:9;27854:17;27847:47;27911:131;28037:4;27911:131;:::i;:::-;27903:139;;27630:419;;;:::o;28055:172::-;28195:24;28191:1;28183:6;28179:14;28172:48;28055:172;:::o;28233:366::-;28375:3;28396:67;28460:2;28455:3;28396:67;:::i;:::-;28389:74;;28472:93;28561:3;28472:93;:::i;:::-;28590:2;28585:3;28581:12;28574:19;;28233:366;;;:::o;28605:419::-;28771:4;28809:2;28798:9;28794:18;28786:26;;28858:9;28852:4;28848:20;28844:1;28833:9;28829:17;28822:47;28886:131;29012:4;28886:131;:::i;:::-;28878:139;;28605:419;;;:::o;29030:240::-;29170:34;29166:1;29158:6;29154:14;29147:58;29239:23;29234:2;29226:6;29222:15;29215:48;29030:240;:::o;29276:366::-;29418:3;29439:67;29503:2;29498:3;29439:67;:::i;:::-;29432:74;;29515:93;29604:3;29515:93;:::i;:::-;29633:2;29628:3;29624:12;29617:19;;29276:366;;;:::o;29648:419::-;29814:4;29852:2;29841:9;29837:18;29829:26;;29901:9;29895:4;29891:20;29887:1;29876:9;29872:17;29865:47;29929:131;30055:4;29929:131;:::i;:::-;29921:139;;29648:419;;;:::o;30073:169::-;30213:21;30209:1;30201:6;30197:14;30190:45;30073:169;:::o;30248:366::-;30390:3;30411:67;30475:2;30470:3;30411:67;:::i;:::-;30404:74;;30487:93;30576:3;30487:93;:::i;:::-;30605:2;30600:3;30596:12;30589:19;;30248:366;;;:::o;30620:419::-;30786:4;30824:2;30813:9;30809:18;30801:26;;30873:9;30867:4;30863:20;30859:1;30848:9;30844:17;30837:47;30901:131;31027:4;30901:131;:::i;:::-;30893:139;;30620:419;;;:::o;31045:241::-;31185:34;31181:1;31173:6;31169:14;31162:58;31254:24;31249:2;31241:6;31237:15;31230:49;31045:241;:::o;31292:366::-;31434:3;31455:67;31519:2;31514:3;31455:67;:::i;:::-;31448:74;;31531:93;31620:3;31531:93;:::i;:::-;31649:2;31644:3;31640:12;31633:19;;31292:366;;;:::o;31664:419::-;31830:4;31868:2;31857:9;31853:18;31845:26;;31917:9;31911:4;31907:20;31903:1;31892:9;31888:17;31881:47;31945:131;32071:4;31945:131;:::i;:::-;31937:139;;31664:419;;;:::o;32089:194::-;32129:4;32149:20;32167:1;32149:20;:::i;:::-;32144:25;;32183:20;32201:1;32183:20;:::i;:::-;32178:25;;32227:1;32224;32220:9;32212:17;;32251:1;32245:4;32242:11;32239:37;;;32256:18;;:::i;:::-;32239:37;32089:194;;;;:::o;32289:225::-;32429:34;32425:1;32417:6;32413:14;32406:58;32498:8;32493:2;32485:6;32481:15;32474:33;32289:225;:::o;32520:366::-;32662:3;32683:67;32747:2;32742:3;32683:67;:::i;:::-;32676:74;;32759:93;32848:3;32759:93;:::i;:::-;32877:2;32872:3;32868:12;32861:19;;32520:366;;;:::o;32892:419::-;33058:4;33096:2;33085:9;33081:18;33073:26;;33145:9;33139:4;33135:20;33131:1;33120:9;33116:17;33109:47;33173:131;33299:4;33173:131;:::i;:::-;33165:139;;32892:419;;;:::o;33317:180::-;33365:77;33362:1;33355:88;33462:4;33459:1;33452:15;33486:4;33483:1;33476:15;33503:180;33551:77;33548:1;33541:88;33648:4;33645:1;33638:15;33672:4;33669:1;33662:15;33689:143;33746:5;33777:6;33771:13;33762:22;;33793:33;33820:5;33793:33;:::i;:::-;33689:143;;;;:::o;33838:351::-;33908:6;33957:2;33945:9;33936:7;33932:23;33928:32;33925:119;;;33963:79;;:::i;:::-;33925:119;34083:1;34108:64;34164:7;34155:6;34144:9;34140:22;34108:64;:::i;:::-;34098:74;;34054:128;33838:351;;;;:::o;34195:85::-;34240:7;34269:5;34258:16;;34195:85;;;:::o;34286:158::-;34344:9;34377:61;34395:42;34404:32;34430:5;34404:32;:::i;:::-;34395:42;:::i;:::-;34377:61;:::i;:::-;34364:74;;34286:158;;;:::o;34450:147::-;34545:45;34584:5;34545:45;:::i;:::-;34540:3;34533:58;34450:147;;:::o;34603:114::-;34670:6;34704:5;34698:12;34688:22;;34603:114;;;:::o;34723:184::-;34822:11;34856:6;34851:3;34844:19;34896:4;34891:3;34887:14;34872:29;;34723:184;;;;:::o;34913:132::-;34980:4;35003:3;34995:11;;35033:4;35028:3;35024:14;35016:22;;34913:132;;;:::o;35051:108::-;35128:24;35146:5;35128:24;:::i;:::-;35123:3;35116:37;35051:108;;:::o;35165:179::-;35234:10;35255:46;35297:3;35289:6;35255:46;:::i;:::-;35333:4;35328:3;35324:14;35310:28;;35165:179;;;;:::o;35350:113::-;35420:4;35452;35447:3;35443:14;35435:22;;35350:113;;;:::o;35499:732::-;35618:3;35647:54;35695:5;35647:54;:::i;:::-;35717:86;35796:6;35791:3;35717:86;:::i;:::-;35710:93;;35827:56;35877:5;35827:56;:::i;:::-;35906:7;35937:1;35922:284;35947:6;35944:1;35941:13;35922:284;;;36023:6;36017:13;36050:63;36109:3;36094:13;36050:63;:::i;:::-;36043:70;;36136:60;36189:6;36136:60;:::i;:::-;36126:70;;35982:224;35969:1;35966;35962:9;35957:14;;35922:284;;;35926:14;36222:3;36215:10;;35623:608;;;35499:732;;;;:::o;36237:831::-;36500:4;36538:3;36527:9;36523:19;36515:27;;36552:71;36620:1;36609:9;36605:17;36596:6;36552:71;:::i;:::-;36633:80;36709:2;36698:9;36694:18;36685:6;36633:80;:::i;:::-;36760:9;36754:4;36750:20;36745:2;36734:9;36730:18;36723:48;36788:108;36891:4;36882:6;36788:108;:::i;:::-;36780:116;;36906:72;36974:2;36963:9;36959:18;36950:6;36906:72;:::i;:::-;36988:73;37056:3;37045:9;37041:19;37032:6;36988:73;:::i;:::-;36237:831;;;;;;;;:::o
Swarm Source
ipfs://98b0b31d3fd8550b40eb6806356adc1a3e979340e5536fed4051884a527c3d06
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.