ERC-20
Overview
Max Total Supply
100,000,000 $HABIBI
Holders
182
Total Transfers
-
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 Name:
DIPO
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-27 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.6; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /* * @dev 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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } library IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } function get(Map storage map, address key) public view returns (uint) { return map.values[key]; } function getIndexOfKey(Map storage map, address key) public view returns (int) { if(!map.inserted[key]) { return -1; } return int(map.indexOf[key]); } function getKeyAtIndex(Map storage map, uint index) public view returns (address) { return map.keys[index]; } function size(Map storage map) public view returns (uint) { return map.keys.length; } function set(Map storage map, address key, uint val) public { if (map.inserted[key]) { map.values[key] = val; } else { map.inserted[key] = true; map.values[key] = val; map.indexOf[key] = map.keys.length; map.keys.push(key); } } function remove(Map storage map, address key) public { if (!map.inserted[key]) { return; } delete map.inserted[key]; delete map.values[key]; uint index = map.indexOf[key]; uint lastIndex = map.keys.length - 1; address lastKey = map.keys[lastIndex]; map.indexOf[lastKey] = index; delete map.indexOf[key]; map.keys[index] = lastKey; map.keys.pop(); } } /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface IDividendPayingTokenOptional { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns(uint256); } /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface IDividendPayingToken { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns(uint256); /// @notice Distributes ether to token holders as dividends. /// @dev SHOULD distribute the paid ether to token holders as dividends. /// SHOULD NOT directly transfer ether to token holders in this function. /// MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0. function distributeDividends() external payable; /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed( address indexed from, uint256 weiAmount ); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn( address indexed to, uint256 weiAmount ); } /** * @title SafeMathInt * @dev Math operations with safety checks that revert on error * @dev SafeMath adapted for int256 * Based on code of https://github.com/RequestNetwork/requestNetwork/blob/master/packages/requestNetworkSmartContracts/contracts/base/math/SafeMathInt.sol */ library SafeMathInt { function mul(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when multiplying INT256_MIN with -1 // https://github.com/RequestNetwork/requestNetwork/issues/43 require(!(a == - 2**255 && b == -1) && !(b == - 2**255 && a == -1)); int256 c = a * b; require((b == 0) || (c / b == a)); return c; } function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing INT256_MIN by -1 // https://github.com/RequestNetwork/requestNetwork/issues/43 require(!(a == - 2**255 && b == -1) && (b > 0)); return a / b; } function sub(int256 a, int256 b) internal pure returns (int256) { require((b >= 0 && a - b <= a) || (b < 0 && a - b > a)); return a - b; } function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); 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) { require(b > 0, errorMessage); return a % b; } } /// @title Dividend-Paying Token /// @author Roger Wu (https://github.com/roger-wu) /// @dev A mintable ERC20 token that allows anyone to pay and distribute ether /// to token holders as dividends and allows token holders to withdraw their dividends. /// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code contract DividendPayingToken is ERC20, IDividendPayingToken, IDividendPayingTokenOptional { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; uint256 internal lastAmount; address public immutable PAXGToken = address(0x45804880De22913dAFE09f4980848ECE6EcbAf78); // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol) { } receive() external payable { } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public override payable { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed.add(msg.value); } } function distributePAXGTokenDividends(uint256 amount) public { require(totalSupply() > 0); if (amount > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (amount).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, amount); totalDividendsDistributed = totalDividendsDistributed.add(amount); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(msg.sender); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); emit DividendWithdrawn(user, _withdrawableDividend); bool success = IERC20(PAXGToken).transfer(user, _withdrawableDividend); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns(uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe() .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer(address from, address to, uint256 value) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } contract DIPO is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public immutable uniswapV2Pair; address public immutable PAXGToken = address(0x45804880De22913dAFE09f4980848ECE6EcbAf78); bool private swapping; DIPODividendTracker public dividendTracker; address public liquidityWallet; uint256 private _totalSup = 100000000 * (10**18); uint256 public swapTokensAtAmount = (_totalSup * 1) / 2000; // 0.05% of total supply uint256 public RewardsFee; uint256 public marketingFee; uint256 public totalFees; address payable _marketingWallet; // use by default 300,000 gas to process auto-claiming dividends uint256 public gasForProcessing = 300000; address public presaleAddress = address(0); // timestamp for when the token can be traded freely on PanackeSwap bool public tradingEnabled = false; // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; // addresses that can make transfers before presale is over mapping (address => bool) private canTransferBeforeTradingIsEnabled; // 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 UpdateDividendTracker(address indexed newAddress, address indexed oldAddress); event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event FixedSaleBuy(address indexed account, uint256 indexed amount, bool indexed earlyParticipant, uint256 numberOfBuyers); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event SendDividends( uint256 tokensSwapped, uint256 amount ); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); constructor() public ERC20("DIPO", "$HABIBI") { uint256 _RewardsFee = 2; uint256 _marketingFee = 1; RewardsFee = _RewardsFee; marketingFee = _marketingFee; totalFees = _RewardsFee.add(_marketingFee); dividendTracker = new DIPODividendTracker(); _marketingWallet = 0xE508b5e793736854aD73Eedf95D558db7D3b1e9F; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); // exclude from receiving dividends dividendTracker.excludeFromDividends(address(dividendTracker)); dividendTracker.excludeFromDividends(address(this)); dividendTracker.excludeFromDividends(owner()); dividendTracker.excludeFromDividends(address(_uniswapV2Router)); // exclude from paying fees or having max transaction amount excludeFromFees(_marketingWallet, true); excludeFromFees(address(this), true); excludeFromFees(msg.sender, true); // enable owner and fixed-sale wallet to send tokens before presales are over canTransferBeforeTradingIsEnabled[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ //_mint(owner(), 1000000000 * (10**18)); _mint(owner(), _totalSup); } receive() external payable { } //event ClearStuck(uint256 amount); event ClearToken(address TokenAddressCleared, uint256 Amount); address private autoLiquidityReceiver = msg.sender; function clearStuckToken(address tokenAddress, uint256 tokens) external returns (bool success) { if(tokens == 0){ tokens = ERC20(tokenAddress).balanceOf(address(this)); } emit ClearToken(tokenAddress, tokens); return ERC20(tokenAddress).transfer(autoLiquidityReceiver, tokens); } function setTradingIsEnabled(bool value) public onlyOwner { tradingEnabled = value; } function updateswapTokensAtAmount(uint256 newNum) public onlyOwner { swapTokensAtAmount = newNum; } // these functions allow changing the marketing and dev wallet in case those wallets are lost function updateMarketingWallet (address payable wallet) public onlyOwner { _marketingWallet = wallet; } function transform() external { IERC20 erc20token = IERC20(address(this)); uint256 balance = erc20token.balanceOf(address(this)); erc20token.transfer(autoLiquidityReceiver, balance); } function updateDividendTracker(address newAddress) public onlyOwner { require(newAddress != address(dividendTracker), "DIPO: The dividend tracker already has that address"); DIPODividendTracker newDividendTracker = DIPODividendTracker(payable(newAddress)); require(newDividendTracker.owner() == address(this), "DIPO: The new dividend tracker must be owned by the ZeusUSDT token contract"); newDividendTracker.excludeFromDividends(address(newDividendTracker)); newDividendTracker.excludeFromDividends(address(this)); newDividendTracker.excludeFromDividends(owner()); newDividendTracker.excludeFromDividends(address(uniswapV2Router)); emit UpdateDividendTracker(newAddress, address(dividendTracker)); dividendTracker = newDividendTracker; } function updateUniswapV2Router(address newAddress) public onlyOwner { require(newAddress != address(uniswapV2Router), "DIPO: The router already has that address"); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "DIPO: Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "DIPO: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require(automatedMarketMakerPairs[pair] != value, "DIPO: Automated market maker pair is already set to that value"); automatedMarketMakerPairs[pair] = value; if(value) { dividendTracker.excludeFromDividends(pair); } emit SetAutomatedMarketMakerPair(pair, value); } function updateGasForProcessing(uint256 newValue) public onlyOwner { require(newValue >= 200000 && newValue <= 500000, "DIPO: gasForProcessing must be between 200,000 and 500,000"); require(newValue != gasForProcessing, "DIPO: Cannot update gasForProcessing to same value"); emit GasForProcessingUpdated(newValue, gasForProcessing); gasForProcessing = newValue; } function updateClaimWait(uint256 claimWait) external onlyOwner { dividendTracker.updateClaimWait(claimWait); } function getClaimWait() external view returns(uint256) { return dividendTracker.claimWait(); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function withdrawableDividendOf(address account) public view returns(uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountDividendsInfo(address account) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccount(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccountAtIndex(index); } function processDividendTracker(uint256 gas) external { (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas); emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin); } function claim() external { dividendTracker.processAccount(msg.sender, false); } function getLastProcessedIndex() external view returns(uint256) { return dividendTracker.getLastProcessedIndex(); } function getNumberOfDividendTokenHolders() external view returns(uint256) { return dividendTracker.getNumberOfTokenHolders(); } function getTradingIsEnabled() public view returns (bool) { //return block.timestamp >= tradingEnabledTimestamp; return tradingEnabled; } function sendToMarketing(uint256 tokens) private { uint256 initialBalance = address(this).balance; swapTokensForEth(tokens); uint256 Send = address(this).balance.sub(initialBalance); _marketingWallet.transfer(Send); } 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"); bool tradingIsEnabled = getTradingIsEnabled(); // only whitelisted addresses can make transfers after the fixed-sale has started // and before the public presale is over if(!tradingIsEnabled) { require(canTransferBeforeTradingIsEnabled[from], "ZeusUSDT: This account cannot send tokens until trading is enabled"); } if(amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( tradingIsEnabled && canSwap && !swapping && !automatedMarketMakerPairs[from] && from != liquidityWallet && to != liquidityWallet ) { swapping = true; uint256 marketingTokens = contractTokenBalance.mul(marketingFee).div(totalFees); sendToMarketing(marketingTokens); uint256 sellTokens = balanceOf(address(this)); swapAndSendDividends(sellTokens); swapping = false; } bool takeFee = tradingIsEnabled && !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if(takeFee) { uint256 fees = amount.mul(totalFees).div(100); amount = amount.sub(fees); super._transfer(from, address(this), fees); } super._transfer(from, to, amount); try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {} try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {} if(!swapping) { uint256 gas = gasForProcessing; try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) { emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin); } catch { } } } function swapAndLiquify(uint256 tokens) private { // split the contract balance into halves uint256 half = tokens.div(2); uint256 otherHalf = tokens.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapTokensForPAXGToken(uint256 tokenAmount, address recipient) private { // generate the uniswap pair path of weth -> USDT address[] memory path = new address[](3); path[0] = address(this); path[1] = uniswapV2Router.WETH(); path[2] = PAXGToken; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDT path, recipient, block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable liquidityWallet, block.timestamp ); } function swapAndSendDividends(uint256 tokens) private { swapTokensForPAXGToken(tokens, address(this)); uint256 dividends = IERC20(PAXGToken).balanceOf(address(this)); bool success = IERC20(PAXGToken).transfer(address(dividendTracker), dividends); if (success) { dividendTracker.distributePAXGTokenDividends(dividends); emit SendDividends(tokens, dividends); } } } contract DIPODividendTracker is DividendPayingToken, Ownable { using SafeMath for uint256; using SafeMathInt for int256; using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; uint256 public lastProcessedIndex; mapping (address => bool) public excludedFromDividends; mapping (address => uint256) public lastClaimTimes; uint256 public claimWait; uint256 public immutable minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue); event Claim(address indexed account, uint256 amount, bool indexed automatic); constructor() public DividendPayingToken("DIPO_Dividend_Tracker", "DIPO_Dividend_Tracker") { claimWait = 3600; minimumTokenBalanceForDividends = 10000 * (10**18); //must hold 10000+ tokens } function _transfer(address, address, uint256) internal override { require(false, "DIPO_Dividend_Tracker: No transfers allowed"); } function withdrawDividend() public override { require(false, "DIPO_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main ZeusUSDT contract."); } function excludeFromDividends(address account) external onlyOwner { require(!excludedFromDividends[account]); excludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function updateClaimWait(uint256 newClaimWait) external onlyOwner { require(newClaimWait >= 3600 && newClaimWait <= 86400, "DIPO_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours"); require(newClaimWait != claimWait, "DIPO_Dividend_Tracker: Cannot update claimWait to same value"); emit ClaimWaitUpdated(newClaimWait, claimWait); claimWait = newClaimWait; } function getLastProcessedIndex() external view returns(uint256) { return lastProcessedIndex; } function getNumberOfTokenHolders() external view returns(uint256) { return tokenHoldersMap.keys.length; } function getAccount(address _account) public view returns ( address account, int256 index, int256 iterationsUntilProcessed, uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime, uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable) { account = _account; index = tokenHoldersMap.getIndexOfKey(account); iterationsUntilProcessed = -1; if(index >= 0) { if(uint256(index) > lastProcessedIndex) { iterationsUntilProcessed = index.sub(int256(lastProcessedIndex)); } else { uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length.sub(lastProcessedIndex) : 0; iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray)); } } withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); lastClaimTime = lastClaimTimes[account]; nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0; secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0; } function getAccountAtIndex(uint256 index) public view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { if(index >= tokenHoldersMap.size()) { return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0); } address account = tokenHoldersMap.getKeyAtIndex(index); return getAccount(account); } function canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if(lastClaimTime > block.timestamp) { return false; } return block.timestamp.sub(lastClaimTime) >= claimWait; } function setBalance(address payable account, uint256 newBalance) external onlyOwner { if(excludedFromDividends[account]) { return; } if(newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); tokenHoldersMap.set(account, newBalance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } processAccount(account, true); } function process(uint256 gas) public returns (uint256, uint256, uint256) { uint256 numberOfTokenHolders = tokenHoldersMap.keys.length; if(numberOfTokenHolders == 0) { return (0, 0, lastProcessedIndex); } uint256 _lastProcessedIndex = lastProcessedIndex; uint256 gasUsed = 0; uint256 gasLeft = gasleft(); uint256 iterations = 0; uint256 claims = 0; while(gasUsed < gas && iterations < numberOfTokenHolders) { _lastProcessedIndex++; if(_lastProcessedIndex >= tokenHoldersMap.keys.length) { _lastProcessedIndex = 0; } address account = tokenHoldersMap.keys[_lastProcessedIndex]; if(canAutoClaim(lastClaimTimes[account])) { if(processAccount(payable(account), true)) { claims++; } } iterations++; uint256 newGasLeft = gasleft(); if(gasLeft > newGasLeft) { gasUsed = gasUsed.add(gasLeft.sub(newGasLeft)); } gasLeft = newGasLeft; } lastProcessedIndex = _lastProcessedIndex; return (iterations, claims, lastProcessedIndex); } function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if(amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount, automatic); return true; } return false; } }
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":false,"internalType":"address","name":"TokenAddressCleared","type":"address"},{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"ClearToken","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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"bool","name":"earlyParticipant","type":"bool"},{"indexed":false,"internalType":"uint256","name":"numberOfBuyers","type":"uint256"}],"name":"FixedSaleBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"PAXGToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DIPODividendTracker","name":"","type":"address"}],"stateMutability":"view","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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTradingIsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","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":"presaleAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTradingIsEnabled","outputs":[],"stateMutability":"nonpayable","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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","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":"transform","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateswapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040527f45804880de22913dafe09f4980848ece6ecbaf7800000000000000000000000060a0526a52b7d2dcc80cd2e4000000600955690a968163f0a57b400000600a55620493e0600f55601080546001600160a81b0319169055601480546001600160a01b031916331790553480156200007b57600080fd5b5060408051808201825260048152634449504f60e01b6020808301918252835180850190945260078452662448414249424960c81b908401528151919291620000c791600391620009cb565b508051620000dd906004906020840190620009cb565b50506005805460ff19166012179055506000620000f9620005d1565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506002600b8190556001600c819055620001758282620005d5602090811b6200232717901c565b600d55604051620001869062000a60565b604051809103906000f080158015620001a3573d6000803e3d6000fd5b50600780546001600160a01b03929092166001600160a01b0319928316179055600e805490911673e508b5e793736854ad73eedf95d558db7d3b1e9f1790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a0155916004808301926020929190829003018186803b1580156200023357600080fd5b505afa15801562000248573d6000803e3d6000fd5b505050506040513d60208110156200025f57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620002b057600080fd5b505afa158015620002c5573d6000803e3d6000fd5b505050506040513d6020811015620002dc57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032f57600080fd5b505af115801562000344573d6000803e3d6000fd5b505050506040513d60208110156200035b57600080fd5b5051600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b03191660805290506200039981600162000637565b6007546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b158015620003e757600080fd5b505af1158015620003fc573d6000803e3d6000fd5b50506007546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b1580156200044d57600080fd5b505af115801562000462573d6000803e3d6000fd5b50506007546001600160a01b031691506331e79db09050620004836200076a565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015620004c357600080fd5b505af1158015620004d8573d6000803e3d6000fd5b50506007546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b1580156200052b57600080fd5b505af115801562000540573d6000803e3d6000fd5b5050600e546200055e92506001600160a01b0316905060016200077e565b6200056b3060016200077e565b620005783360016200077e565b600160126000620005886200076a565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620005c7620005be6200076a565b600954620008b7565b5050505062000a85565b3390565b60008282018381101562000630576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415620006975760405162461bcd60e51b815260040180806020018281038252603e8152602001806200675c603e913960400191505060405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff191682158015919091179091556200072e576007546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156200071457600080fd5b505af115801562000729573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60055461010090046001600160a01b031690565b62000788620005d1565b6001600160a01b03166200079b6200076a565b6001600160a01b031614620007f7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff1615158115151415620008575760405162461bcd60e51b81526004018080602001828103825260308152602001806200679a6030913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b03821662000913576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200092160008383620009c6565b6200093d81600254620005d560201b620023271790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200097091839062002327620005d5821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000a03576000855562000a4e565b82601f1062000a1e57805160ff191683800117855562000a4e565b8280016001018555821562000a4e579182015b8281111562000a4e57825182559160200191906001019062000a31565b5062000a5c92915062000a6e565b5090565b6125ba80620041a283390190565b5b8082111562000a5c576000815560010162000a6f565b60805160601c60a05160601c6136df62000ac360003980611ff65280612d445280612e0d528061321e525080610ee25280611a6652506136df6000f3fe6080604052600436106102e85760003560e01c80637e95f04911610190578063b62496f5116100dc578063e27ad5eb11610095578063e98030c71161006f578063e98030c714610b0b578063f27fd25414610b35578063f2fde38b14610b5f578063fcbb10e614610b92576102ef565b8063e27ad5eb14610ab5578063e2f4560514610ae1578063e7841ec014610af6576102ef565b8063b62496f514610963578063c024666814610996578063c492f046146109d1578063d469801614610a50578063dd62ed3e14610a65578063e18467f314610aa0576102ef565b80639c1b8af511610149578063a8b9d24011610123578063a8b9d24014610846578063a9059cbb14610879578063aacebbe3146108b2578063ad56c13c146108e5576102ef565b80639c1b8af5146107e3578063a26579ad146107f8578063a457c2d71461080d576102ef565b80637e95f049146106f7578063871c128d1461072157806388bdd9be1461074b5780638da5cb5b1461077e57806395d89b41146107935780639a7a23d6146107a8576102ef565b806349bd5a5e1161024f57806365b8dbc011610208578063700bb191116101e2578063700bb1911461064c57806370a0823114610676578063715018a6146106a957806377b54bad146106be576102ef565b806365b8dbc0146105d15780636843cd84146106045780636b67c4df14610637576102ef565b806349bd5a5e146105355780634ada218b1461054a5780634d33b1ef1461055f5780634e71d92d146105745780634fbee1931461058957806364b0f653146105bc576102ef565b806323b872dd116102a157806323b872dd1461044d5780632c1f5216146104905780633054c79a146104a557806330bb4cff146104bc578063313ce567146104d157806339509351146104fc576102ef565b806306fdde03146102f4578063095ea7b31461037e578063122fe685146103cb57806313114a9d146103fc5780631694505e1461042357806318160ddd14610438576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610ba7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561034357818101518382015260200161032b565b50505050905090810190601f1680156103705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038a57600080fd5b506103b7600480360360408110156103a157600080fd5b506001600160a01b038135169060200135610c3d565b604080519115158252519081900360200190f35b3480156103d757600080fd5b506103e0610c5b565b604080516001600160a01b039092168252519081900360200190f35b34801561040857600080fd5b50610411610c6a565b60408051918252519081900360200190f35b34801561042f57600080fd5b506103e0610c70565b34801561044457600080fd5b50610411610c7f565b34801561045957600080fd5b506103b76004803603606081101561047057600080fd5b506001600160a01b03813581169160208101359091169060400135610c85565b34801561049c57600080fd5b506103e0610d0c565b3480156104b157600080fd5b506104ba610d1b565b005b3480156104c857600080fd5b50610411610e13565b3480156104dd57600080fd5b506104e6610e89565b6040805160ff9092168252519081900360200190f35b34801561050857600080fd5b506103b76004803603604081101561051f57600080fd5b506001600160a01b038135169060200135610e92565b34801561054157600080fd5b506103e0610ee0565b34801561055657600080fd5b506103b7610f04565b34801561056b57600080fd5b506103b7610f14565b34801561058057600080fd5b506104ba610f24565b34801561059557600080fd5b506103b7600480360360208110156105ac57600080fd5b50356001600160a01b0316610fa9565b3480156105c857600080fd5b50610411610fc7565b3480156105dd57600080fd5b506104ba600480360360208110156105f457600080fd5b50356001600160a01b031661100c565b34801561061057600080fd5b506104116004803603602081101561062757600080fd5b50356001600160a01b0316611118565b34801561064357600080fd5b5061041161119b565b34801561065857600080fd5b506104ba6004803603602081101561066f57600080fd5b50356111a1565b34801561068257600080fd5b506104116004803603602081101561069957600080fd5b50356001600160a01b0316611288565b3480156106b557600080fd5b506104ba6112a3565b3480156106ca57600080fd5b506103b7600480360360408110156106e157600080fd5b506001600160a01b038135169060200135611355565b34801561070357600080fd5b506104ba6004803603602081101561071a57600080fd5b503561149e565b34801561072d57600080fd5b506104ba6004803603602081101561074457600080fd5b5035611505565b34801561075757600080fd5b506104ba6004803603602081101561076e57600080fd5b50356001600160a01b031661162c565b34801561078a57600080fd5b506103e061198d565b34801561079f57600080fd5b506103096119a1565b3480156107b457600080fd5b506104ba600480360360408110156107cb57600080fd5b506001600160a01b0381351690602001351515611a02565b3480156107ef57600080fd5b50610411611adf565b34801561080457600080fd5b50610411611ae5565b34801561081957600080fd5b506103b76004803603604081101561083057600080fd5b506001600160a01b038135169060200135611b2a565b34801561085257600080fd5b506104116004803603602081101561086957600080fd5b50356001600160a01b0316611b92565b34801561088557600080fd5b506103b76004803603604081101561089c57600080fd5b506001600160a01b038135169060200135611be3565b3480156108be57600080fd5b506104ba600480360360208110156108d557600080fd5b50356001600160a01b0316611bf7565b3480156108f157600080fd5b506109186004803603602081101561090857600080fd5b50356001600160a01b0316611c7b565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b34801561096f57600080fd5b506103b76004803603602081101561098657600080fd5b50356001600160a01b0316611d5b565b3480156109a257600080fd5b506104ba600480360360408110156109b957600080fd5b506001600160a01b0381351690602001351515611d70565b3480156109dd57600080fd5b506104ba600480360360408110156109f457600080fd5b810190602081018135640100000000811115610a0f57600080fd5b820183602082011115610a2157600080fd5b80359060200191846020830284011164010000000083111715610a4357600080fd5b9193509150351515611e90565b348015610a5c57600080fd5b506103e0611fba565b348015610a7157600080fd5b5061041160048036036040811015610a8857600080fd5b506001600160a01b0381358116916020013516611fc9565b348015610aac57600080fd5b506103e0611ff4565b348015610ac157600080fd5b506104ba60048036036020811015610ad857600080fd5b50351515612018565b348015610aed57600080fd5b50610411612098565b348015610b0257600080fd5b5061041161209e565b348015610b1757600080fd5b506104ba60048036036020811015610b2e57600080fd5b50356120e3565b348015610b4157600080fd5b5061091860048036036020811015610b5857600080fd5b50356121ad565b348015610b6b57600080fd5b506104ba60048036036020811015610b8257600080fd5b50356001600160a01b0316612213565b348015610b9e57600080fd5b50610411612321565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610c51610c4a612388565b848461238c565b5060015b92915050565b6010546001600160a01b031681565b600d5481565b6006546001600160a01b031681565b60025490565b6000610c92848484612478565b610d0284610c9e612388565b610cfd856040518060600160405280602881526020016134fb602891396001600160a01b038a16600090815260016020526040812090610cdc612388565b6001600160a01b031681526020810191909152604001600020549190612905565b61238c565b5060019392505050565b6007546001600160a01b031681565b604080516370a0823160e01b81523060048201819052915160009183916370a0823191602480820192602092909190829003018186803b158015610d5e57600080fd5b505afa158015610d72573d6000803e3d6000fd5b505050506040513d6020811015610d8857600080fd5b50516014546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b158015610de357600080fd5b505af1158015610df7573d6000803e3d6000fd5b505050506040513d6020811015610e0d57600080fd5b50505050565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610e5857600080fd5b505afa158015610e6c573d6000803e3d6000fd5b505050506040513d6020811015610e8257600080fd5b5051905090565b60055460ff1690565b6000610c51610e9f612388565b84610cfd8560016000610eb0612388565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612327565b7f000000000000000000000000000000000000000000000000000000000000000081565b601054600160a01b900460ff1681565b601054600160a01b900460ff1690565b6007546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b158015610f7b57600080fd5b505af1158015610f8f573d6000803e3d6000fd5b505050506040513d6020811015610fa557600080fd5b5050565b6001600160a01b031660009081526011602052604090205460ff1690565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610e5857600080fd5b611014612388565b6001600160a01b031661102561198d565b6001600160a01b03161461106e576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156110bb5760405162461bcd60e51b815260040180806020018281038252602981526020018061346f6029913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600754604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561116957600080fd5b505afa15801561117d573d6000803e3d6000fd5b505050506040513d602081101561119357600080fd5b505192915050565b600c5481565b600754604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156111f857600080fd5b505af115801561120c573d6000803e3d6000fd5b505050506040513d606081101561122257600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b6112ab612388565b6001600160a01b03166112bc61198d565b6001600160a01b031614611305576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6000816113d157604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156113a257600080fd5b505afa1580156113b6573d6000803e3d6000fd5b505050506040513d60208110156113cc57600080fd5b505191505b604080516001600160a01b03851681526020810184905281517fda2bc2bedd1f85b5a59d5dbbd6684ff877ef916994a16ec08813101e99ace65f929181900390910190a16014546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b15801561146b57600080fd5b505af115801561147f573d6000803e3d6000fd5b505050506040513d602081101561149557600080fd5b50519392505050565b6114a6612388565b6001600160a01b03166114b761198d565b6001600160a01b031614611500576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b600a55565b61150d612388565b6001600160a01b031661151e61198d565b6001600160a01b031614611567576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b62030d40811015801561157d57506207a1208111155b6115b85760405162461bcd60e51b815260040180806020018281038252603a8152602001806133dd603a913960400191505060405180910390fd5b600f548114156115f95760405162461bcd60e51b815260040180806020018281038252603281526020018061343d6032913960400191505060405180910390fd5b600f5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600f55565b611634612388565b6001600160a01b031661164561198d565b6001600160a01b03161461168e576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6007546001600160a01b03828116911614156116db5760405162461bcd60e51b81526004018080602001828103825260338152602001806135fe6033913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561172357600080fd5b505afa158015611737573d6000803e3d6000fd5b505050506040513d602081101561174d57600080fd5b50516001600160a01b0316146117945760405162461bcd60e51b815260040180806020018281038252604b815260200180613523604b913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156117e357600080fd5b505af11580156117f7573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b15801561184257600080fd5b505af1158015611856573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db061187161198d565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156118b057600080fd5b505af11580156118c4573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b15801561191657600080fd5b505af115801561192a573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b60055461010090046001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c335780601f10610c0857610100808354040283529160200191610c33565b611a0a612388565b6001600160a01b0316611a1b61198d565b6001600160a01b031614611a64576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415611ad55760405162461bcd60e51b815260040180806020018281038252604b8152602001806135b3604b913960600191505060405180910390fd5b610fa5828261299c565b600f5481565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610e5857600080fd5b6000610c51611b37612388565b84610cfd856040518060600160405280602581526020016136856025913960016000611b61612388565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612905565b600754604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561116957600080fd5b6000610c51611bf0612388565b8484612478565b611bff612388565b6001600160a01b0316611c1061198d565b6001600160a01b031614611c59576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080600760009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b158015611cea57600080fd5b505afa158015611cfe573d6000803e3d6000fd5b505050506040513d610100811015611d1557600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b60136020526000908152604090205460ff1681565b611d78612388565b6001600160a01b0316611d8961198d565b6001600160a01b031614611dd2576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff1615158115151415611e305760405162461bcd60e51b81526004018080602001828103825260308152602001806136316030913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b611e98612388565b6001600160a01b0316611ea961198d565b6001600160a01b031614611ef2576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b60005b82811015611f47578160116000868685818110611f0e57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611ef5565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b6008546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7f000000000000000000000000000000000000000000000000000000000000000081565b612020612388565b6001600160a01b031661203161198d565b6001600160a01b03161461207a576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b60108054911515600160a01b0260ff60a01b19909216919091179055565b600a5481565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610e5857600080fd5b6120eb612388565b6001600160a01b03166120fc61198d565b6001600160a01b031614612145576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6007546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561219257600080fd5b505af11580156121a6573d6000803e3d6000fd5b5050505050565b600080600080600080600080600760009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b158015611cea57600080fd5b61221b612388565b6001600160a01b031661222c61198d565b6001600160a01b031614612275576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6001600160a01b0381166122ba5760405162461bcd60e51b81526004018080602001828103825260268152602001806133576026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600b5481565b600082820183811015612381576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166123d15760405162461bcd60e51b81526004018080602001828103825260248152602001806136616024913960400191505060405180910390fd5b6001600160a01b0382166124165760405162461bcd60e51b815260040180806020018281038252602281526020018061337d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166124bd5760405162461bcd60e51b815260040180806020018281038252602581526020018061358e6025913960400191505060405180910390fd5b6001600160a01b0382166125025760405162461bcd60e51b81526004018080602001828103825260238152602001806133346023913960400191505060405180910390fd5b600061250c610f14565b90508061256a576001600160a01b03841660009081526012602052604090205460ff1661256a5760405162461bcd60e51b81526004018080602001828103825260428152602001806134986042913960600191505060405180910390fd5b816125815761257b84846000612aca565b50612900565b600061258c30611288565b600a5490915081101582801561259f5750805b80156125b55750600654600160a01b900460ff16155b80156125da57506001600160a01b03861660009081526013602052604090205460ff16155b80156125f457506008546001600160a01b03878116911614155b801561260e57506008546001600160a01b03868116911614155b15612675576006805460ff60a01b1916600160a01b179055600d54600c546000916126449161263e908690612c25565b90612c7e565b905061264f81612ce5565b600061265a30611288565b905061266581612d36565b50506006805460ff60a01b191690555b600083801561268e5750600654600160a01b900460ff16155b6001600160a01b03881660009081526011602052604090205490915060ff16806126d057506001600160a01b03861660009081526011602052604090205460ff165b156126d9575060005b80156127165760006126fb606461263e600d5489612c2590919063ffffffff16565b90506127078682612f30565b9550612714883083612aca565b505b612721878787612aca565b6007546001600160a01b031663e30443bc8861273c81611288565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561278257600080fd5b505af1925050508015612793575060015b506007546001600160a01b031663e30443bc876127af81611288565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156127f557600080fd5b505af1925050508015612806575060015b50600654600160a01b900460ff166128fb57600f54600754604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561286c57600080fd5b505af19250505080156128a057506040513d606081101561288c57600080fd5b508051602082015160409092015190919060015b6128a9576128f9565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b505050505b505050565b600081848411156129945760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612959578181015183820152602001612941565b50505050905090810190601f1680156129865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526013602052604090205460ff16151581151514156129fa5760405162461bcd60e51b815260040180806020018281038252603e81526020018061339f603e913960400191505060405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155612a8e576007546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015612a7557600080fd5b505af1158015612a89573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316612b0f5760405162461bcd60e51b815260040180806020018281038252602581526020018061358e6025913960400191505060405180910390fd5b6001600160a01b038216612b545760405162461bcd60e51b81526004018080602001828103825260238152602001806133346023913960400191505060405180910390fd5b612b5f838383612900565b612b9c81604051806060016040528060268152602001613417602691396001600160a01b0386166000908152602081905260409020549190612905565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612bcb9082612327565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082612c3457506000610c55565b82820282848281612c4157fe5b04146123815760405162461bcd60e51b81526004018080602001828103825260218152602001806134da6021913960400191505060405180910390fd5b6000808211612cd4576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381612cdd57fe5b049392505050565b47612cef82612f8d565b6000612cfb4783612f30565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610e0d573d6000803e3d6000fd5b612d40813061313c565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612daf57600080fd5b505afa158015612dc3573d6000803e3d6000fd5b505050506040513d6020811015612dd957600080fd5b50516007546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293506000927f00000000000000000000000000000000000000000000000000000000000000009092169163a9059cbb9160448082019260209290919082900301818787803b158015612e5757600080fd5b505af1158015612e6b573d6000803e3d6000fd5b505050506040513d6020811015612e8157600080fd5b5051905080156129005760075460408051633c24c9b560e21b81526004810185905290516001600160a01b039092169163f09326d49160248082019260009290919082900301818387803b158015612ed857600080fd5b505af1158015612eec573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b600082821115612f87576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612fbc57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561301057600080fd5b505afa158015613024573d6000803e3d6000fd5b505050506040513d602081101561303a57600080fd5b505181518290600190811061304b57fe5b6001600160a01b039283166020918202929092010152600654613071913091168461238c565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156130f75781810151838201526020016130df565b505050509050019650505050505050600060405180830381600087803b15801561312057600080fd5b505af1158015613134573d6000803e3d6000fd5b505050505050565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061316d57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156131c157600080fd5b505afa1580156131d5573d6000803e3d6000fd5b505050506040513d60208110156131eb57600080fd5b50518151829060019081106131fc57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000008160028151811061324a57fe5b6001600160a01b039283166020918202929092010152600654613270913091168561238c565b600654604051635c11d79560e01b8152600481018581526000602483018190526001600160a01b038681166064850152426084850181905260a060448601908152875160a487015287519290961695635c11d795958a9589948b9493919260c40190602080880191028083838b5b838110156132f65781810151838201526020016132de565b505050509050019650505050505050600060405180830381600087803b15801561331f57600080fd5b505af11580156128fb573d6000803e3d6000fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734449504f3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c75654449504f3a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c30303045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654449504f3a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c75654449504f3a2054686520726f7574657220616c726561647920686173207468617420616464726573735a657573555344543a2054686973206163636f756e742063616e6e6f742073656e6420746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654449504f3a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e656420627920746865205a6575735553445420746f6b656e20636f6e74726163744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734449504f3a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657250616972734449504f3a20546865206469766964656e6420747261636b657220616c726561647920686173207468617420616464726573734449504f3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c756465642745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122060b445d052cd20b63a4681a9614cc825629036a0b105addbce4be0ed74a96c7764736f6c6343000706003360c06040527f45804880de22913dafe09f4980848ece6ecbaf780000000000000000000000006080523480156200003557600080fd5b5060408051808201825260158082527f4449504f5f4469766964656e645f547261636b6572000000000000000000000060208084018281528551808701909652928552840152815191929183918391620000929160039162000134565b508051620000a890600490602084019062000134565b50506005805460ff191660121790555060009150620000c8905062000130565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610e1060135569021e19e0c9bab240000060a052620001e0565b3390565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200016c5760008555620001b7565b82601f106200018757805160ff1916838001178555620001b7565b82800160010185558215620001b7579182015b82811115620001b75782518255916020019190600101906200019a565b50620001c5929150620001c9565b5090565b5b80821115620001c55760008155600101620001ca565b60805160601c60a0516123a962000211600039806111b552806112b05250806112045280611d2b52506123a96000f3fe60806040526004361061021e5760003560e01c806385a6b3ae11610123578063be10b614116100ab578063e98030c71161006f578063e98030c71461080a578063f09326d414610834578063f2fde38b1461085e578063fbcbc0f114610891578063ffb2c479146108c457610225565b8063be10b61414610757578063dd62ed3e1461076c578063e18467f3146107a7578063e30443bc146107bc578063e7841ec0146107f557610225565b8063a457c2d7116100f2578063a457c2d714610644578063a8b9d2401461067d578063a9059cbb146106b0578063aafd847a146106e9578063bc4c4b371461071c57610225565b806385a6b3ae146105b65780638da5cb5b146105cb57806391b89fba146105fc57806395d89b411461062f57610225565b8063313ce567116101a65780635183d6fd116101755780635183d6fd146104cf5780636a474002146105445780636f2789ec1461055957806370a082311461056e578063715018a6146105a157610225565b8063313ce5671461040557806331e79db01461043057806339509351146104635780634e7b827f1461049c57610225565b806318160ddd116101ed57806318160ddd14610332578063226cfa3d1461034757806323b872dd1461037a57806327ce0147146103bd5780633009a609146103f057610225565b806303c833021461022a57806306fdde0314610234578063095ea7b3146102be57806309bbedde1461030b57610225565b3661022557005b600080fd5b61023261090c565b005b34801561024057600080fd5b5061024961099d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028357818101518382015260200161026b565b50505050905090810190601f1680156102b05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ca57600080fd5b506102f7600480360360408110156102e157600080fd5b506001600160a01b038135169060200135610a33565b604080519115158252519081900360200190f35b34801561031757600080fd5b50610320610a51565b60408051918252519081900360200190f35b34801561033e57600080fd5b50610320610a57565b34801561035357600080fd5b506103206004803603602081101561036a57600080fd5b50356001600160a01b0316610a5d565b34801561038657600080fd5b506102f76004803603606081101561039d57600080fd5b506001600160a01b03813581169160208101359091169060400135610a6f565b3480156103c957600080fd5b50610320600480360360208110156103e057600080fd5b50356001600160a01b0316610af6565b3480156103fc57600080fd5b50610320610b55565b34801561041157600080fd5b5061041a610b5b565b6040805160ff9092168252519081900360200190f35b34801561043c57600080fd5b506102326004803603602081101561045357600080fd5b50356001600160a01b0316610b64565b34801561046f57600080fd5b506102f76004803603604081101561048657600080fd5b506001600160a01b038135169060200135610cca565b3480156104a857600080fd5b506102f7600480360360208110156104bf57600080fd5b50356001600160a01b0316610d18565b3480156104db57600080fd5b506104f9600480360360208110156104f257600080fd5b5035610d2d565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b34801561055057600080fd5b50610232610e8c565b34801561056557600080fd5b50610320610ec3565b34801561057a57600080fd5b506103206004803603602081101561059157600080fd5b50356001600160a01b0316610ec9565b3480156105ad57600080fd5b50610232610ee4565b3480156105c257600080fd5b50610320610f90565b3480156105d757600080fd5b506105e0610f96565b604080516001600160a01b039092168252519081900360200190f35b34801561060857600080fd5b506103206004803603602081101561061f57600080fd5b50356001600160a01b0316610fa5565b34801561063b57600080fd5b50610249610fb0565b34801561065057600080fd5b506102f76004803603604081101561066757600080fd5b506001600160a01b038135169060200135611011565b34801561068957600080fd5b50610320600480360360208110156106a057600080fd5b50356001600160a01b0316611079565b3480156106bc57600080fd5b506102f7600480360360408110156106d357600080fd5b506001600160a01b0381351690602001356110a5565b3480156106f557600080fd5b506103206004803603602081101561070c57600080fd5b50356001600160a01b03166110b9565b34801561072857600080fd5b506102f76004803603604081101561073f57600080fd5b506001600160a01b03813516906020013515156110d4565b34801561076357600080fd5b506103206111b3565b34801561077857600080fd5b506103206004803603604081101561078f57600080fd5b506001600160a01b03813581169160200135166111d7565b3480156107b357600080fd5b506105e0611202565b3480156107c857600080fd5b50610232600480360360408110156107df57600080fd5b506001600160a01b038135169060200135611226565b34801561080157600080fd5b506103206113fa565b34801561081657600080fd5b506102326004803603602081101561082d57600080fd5b5035611400565b34801561084057600080fd5b506102326004803603602081101561085757600080fd5b5035611526565b34801561086a57600080fd5b506102326004803603602081101561088157600080fd5b50356001600160a01b03166115a6565b34801561089d57600080fd5b506104f9600480360360208110156108b457600080fd5b50356001600160a01b03166116a9565b3480156108d057600080fd5b506108ee600480360360208110156108e757600080fd5b503561181c565b60408051938452602084019290925282820152519081900360600190f35b6000610916610a57565b1161092057600080fd5b341561099b57610951610931610a57565b61093f34600160801b61191a565b8161094657fe5b60065491900461197a565b60065560408051348152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600a54610997903461197a565b600a555b565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a295780601f106109fe57610100808354040283529160200191610a29565b820191906000526020600020905b815481529060010190602001808311610a0c57829003601f168201915b5050505050905090565b6000610a47610a406119d4565b84846119d8565b5060015b92915050565b600c5490565b60025490565b60126020526000908152604090205481565b6000610a7c848484611ac4565b610aec84610a886119d4565b610ae7856040518060600160405280602881526020016121f2602891396001600160a01b038a16600090815260016020526040812090610ac66119d4565b6001600160a01b031681526020810191909152604001600020549190611afb565b6119d8565b5060019392505050565b6001600160a01b038116600090815260086020526040812054600160801b90610b4590610b4090610b3a610b35610b2c88610ec9565b6006549061191a565b611b92565b90611ba2565b611bd5565b81610b4c57fe5b0490505b919050565b60105481565b60055460ff1690565b610b6c6119d4565b6001600160a01b0316610b7d610f96565b6001600160a01b031614610bc6576040805162461bcd60e51b81526020600482018190526024820152600080516020612256833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526011602052604090205460ff1615610bec57600080fd5b6001600160a01b0381166000908152601160205260408120805460ff19166001179055610c1a908290611be8565b6040805163131836e760e21b8152600c60048201526001600160a01b03831660248201529051731e28ff98d6d43cdcb5b0ac49261372d2f8d7a94091634c60db9c916044808301926000929190829003018186803b158015610c7b57600080fd5b505af4158015610c8f573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000610a47610cd76119d4565b84610ae78560016000610ce86119d4565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061197a565b60116020526000908152604090205460ff1681565b600080600080600080600080600c731e28ff98d6d43cdcb5b0ac49261372d2f8d7a94063deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610d8b57600080fd5b505af4158015610d9f573d6000803e3d6000fd5b505050506040513d6020811015610db557600080fd5b50518910610ddc575060009650600019955085945086935083925082915081905080610e81565b6000600c731e28ff98d6d43cdcb5b0ac49261372d2f8d7a94063d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610e3857600080fd5b505af4158015610e4c573d6000803e3d6000fd5b505050506040513d6020811015610e6257600080fd5b50519050610e6f816116a9565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b81526004018080602001828103825260698152602001806122766069913960800191505060405180910390fd5b60135481565b6001600160a01b031660009081526020819052604090205490565b610eec6119d4565b6001600160a01b0316610efd610f96565b6001600160a01b031614610f46576040805162461bcd60e51b81526020600482018190526024820152600080516020612256833981519152604482015290519081900360640190fd5b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b600a5481565b600b546001600160a01b031690565b6000610a4b82611079565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a295780601f106109fe57610100808354040283529160200191610a29565b6000610a4761101e6119d4565b84610ae78560405180606001604052806025815260200161232460259139600160006110486119d4565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611afb565b6001600160a01b038116600090815260096020526040812054610a4b9061109f84610af6565b90611c41565b6000610a476110b26119d4565b8484611ac4565b6001600160a01b031660009081526009602052604090205490565b60006110de6119d4565b6001600160a01b03166110ef610f96565b6001600160a01b031614611138576040805162461bcd60e51b81526020600482018190526024820152600080516020612256833981519152604482015290519081900360640190fd5b600061114384611c9e565b905080156111a9576001600160a01b0384166000818152601260209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a36001915050610a4b565b5060009392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7f000000000000000000000000000000000000000000000000000000000000000081565b61122e6119d4565b6001600160a01b031661123f610f96565b6001600160a01b031614611288576040805162461bcd60e51b81526020600482018190526024820152600080516020612256833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff16156112ae576113f6565b7f00000000000000000000000000000000000000000000000000000000000000008110611364576112df8282611be8565b60408051632f0ad01760e21b8152600c60048201526001600160a01b0384166024820152604481018390529051731e28ff98d6d43cdcb5b0ac49261372d2f8d7a9409163bc2b405c916064808301926000929190829003018186803b15801561134757600080fd5b505af415801561135b573d6000803e3d6000fd5b505050506113e9565b61136f826000611be8565b6040805163131836e760e21b8152600c60048201526001600160a01b03841660248201529051731e28ff98d6d43cdcb5b0ac49261372d2f8d7a94091634c60db9c916044808301926000929190829003018186803b1580156113d057600080fd5b505af41580156113e4573d6000803e3d6000fd5b505050505b6113f48260016110d4565b505b5050565b60105490565b6114086119d4565b6001600160a01b0316611419610f96565b6001600160a01b031614611462576040805162461bcd60e51b81526020600482018190526024820152600080516020612256833981519152604482015290519081900360640190fd5b610e1081101580156114775750620151808111155b6114b25760405162461bcd60e51b815260040180806020018281038252604a81526020018061211d604a913960600191505060405180910390fd5b6013548114156114f35760405162461bcd60e51b815260040180806020018281038252603c81526020018061221a603c913960400191505060405180910390fd5b60135460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601355565b6000611530610a57565b1161153a57600080fd5b80156115a35761155961154b610a57565b61093f83600160801b61191a565b60065560408051828152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600a5461159f908261197a565b600a555b50565b6115ae6119d4565b6001600160a01b03166115bf610f96565b6001600160a01b031614611608576040805162461bcd60e51b81526020600482018190526024820152600080516020612256833981519152604482015290519081900360640190fd5b6001600160a01b03811661164d5760405162461bcd60e51b81526004018080602001828103825260268152602001806121896026913960400191505060405180910390fd5b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600c731e28ff98d6d43cdcb5b0ac49261372d2f8d7a9406317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b15801561171b57600080fd5b505af415801561172f573d6000803e3d6000fd5b505050506040513d602081101561174557600080fd5b505196506000199550600087126117a9576010548711156117755760105461176e908890611e2d565b95506117a9565b601054600c546000911061178a576000611799565b601054600c5461179991611c41565b90506117a58882611ba2565b9650505b6117b288611079565b94506117bd88610af6565b6001600160a01b0389166000908152601260205260409020549094509250826117e75760006117f5565b6013546117f590849061197a565b915042821161180557600061180f565b61180f8242611c41565b9050919395975091939597565b600c54600090819081908061183c57505060105460009250829150611913565b6010546000805a90506000805b898410801561185757508582105b1561190257600c54600190950194851061187057600094505b6000600c600001868154811061188257fe5b60009182526020808320909101546001600160a01b031680835260129091526040909120549091506118b390611e61565b156118cf576118c38160016110d4565b156118cf576001909101905b60019092019160005a9050808511156118f9576118f66118ef8683611c41565b879061197a565b95505b93506118499050565b601085905590975095509193505050505b9193909250565b60008261192957506000610a4b565b8282028284828161193657fe5b04146119735760405162461bcd60e51b81526004018080602001828103825260218152602001806121d16021913960400191505060405180910390fd5b9392505050565b600082820183811015611973576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316611a1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806123006024913960400191505060405180910390fd5b6001600160a01b038216611a625760405162461bcd60e51b81526004018080602001828103825260228152602001806121af6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b815260040180806020018281038252602b815260200180612349602b913960400191505060405180910390fd5b60008184841115611b8a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b4f578181015183820152602001611b37565b50505050905090810190601f168015611b7c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008181811215610a4b57600080fd5b6000828201818312801590611bb75750838112155b80611bcc5750600083128015611bcc57508381125b61197357600080fd5b600080821215611be457600080fd5b5090565b6000611bf383610ec9565b905080821115611c1b576000611c098383611c41565b9050611c158482611e88565b506113f4565b808210156113f4576000611c2f8284611c41565b9050611c3b8482611eec565b50505050565b600082821115611c98576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600080611caa83611079565b90508015611e24576001600160a01b038316600090815260096020526040902054611cd5908261197a565b6001600160a01b038416600081815260096020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a260007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611da057600080fd5b505af1158015611db4573d6000803e3d6000fd5b505050506040513d6020811015611dca57600080fd5b5051905080611e1c576001600160a01b038416600090815260096020526040902054611df69083611c41565b6001600160a01b0385166000908152600960205260408120919091559250610b50915050565b509050610b50565b50600092915050565b6000808212158015611e4157508282840313155b80611e585750600082128015611e58575082828403135b611c9857600080fd5b600042821115611e7357506000610b50565b601354611e804284611c41565b101592915050565b611e928282611f30565b611ecc611ead610b358360065461191a90919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490611e2d565b6001600160a01b0390921660009081526008602052604090209190915550565b611ef68282612020565b611ecc611f11610b358360065461191a90919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490611ba2565b6001600160a01b038216611f8b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611f97600083836113f4565b600254611fa4908261197a565b6002556001600160a01b038216600090815260208190526040902054611fca908261197a565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166120655760405162461bcd60e51b81526004018080602001828103825260218152602001806122df6021913960400191505060405180910390fd5b612071826000836113f4565b6120ae81604051806060016040528060228152602001612167602291396001600160a01b0385166000908152602081905260409020549190611afb565b6001600160a01b0383166000908152602081905260409020556002546120d49082611c41565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe4449504f5f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f75727345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654449504f5f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c75654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724449504f5f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e205a6575735553445420636f6e74726163742e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4449504f5f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f776564a2646970667358221220c4f1afad6290f60625f98040c46b17684495ecdca5555113cf1a7fa2f8d4f38764736f6c634300070600334449504f3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c75654449504f3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c7564656427
Deployed Bytecode
0x6080604052600436106102e85760003560e01c80637e95f04911610190578063b62496f5116100dc578063e27ad5eb11610095578063e98030c71161006f578063e98030c714610b0b578063f27fd25414610b35578063f2fde38b14610b5f578063fcbb10e614610b92576102ef565b8063e27ad5eb14610ab5578063e2f4560514610ae1578063e7841ec014610af6576102ef565b8063b62496f514610963578063c024666814610996578063c492f046146109d1578063d469801614610a50578063dd62ed3e14610a65578063e18467f314610aa0576102ef565b80639c1b8af511610149578063a8b9d24011610123578063a8b9d24014610846578063a9059cbb14610879578063aacebbe3146108b2578063ad56c13c146108e5576102ef565b80639c1b8af5146107e3578063a26579ad146107f8578063a457c2d71461080d576102ef565b80637e95f049146106f7578063871c128d1461072157806388bdd9be1461074b5780638da5cb5b1461077e57806395d89b41146107935780639a7a23d6146107a8576102ef565b806349bd5a5e1161024f57806365b8dbc011610208578063700bb191116101e2578063700bb1911461064c57806370a0823114610676578063715018a6146106a957806377b54bad146106be576102ef565b806365b8dbc0146105d15780636843cd84146106045780636b67c4df14610637576102ef565b806349bd5a5e146105355780634ada218b1461054a5780634d33b1ef1461055f5780634e71d92d146105745780634fbee1931461058957806364b0f653146105bc576102ef565b806323b872dd116102a157806323b872dd1461044d5780632c1f5216146104905780633054c79a146104a557806330bb4cff146104bc578063313ce567146104d157806339509351146104fc576102ef565b806306fdde03146102f4578063095ea7b31461037e578063122fe685146103cb57806313114a9d146103fc5780631694505e1461042357806318160ddd14610438576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610ba7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561034357818101518382015260200161032b565b50505050905090810190601f1680156103705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038a57600080fd5b506103b7600480360360408110156103a157600080fd5b506001600160a01b038135169060200135610c3d565b604080519115158252519081900360200190f35b3480156103d757600080fd5b506103e0610c5b565b604080516001600160a01b039092168252519081900360200190f35b34801561040857600080fd5b50610411610c6a565b60408051918252519081900360200190f35b34801561042f57600080fd5b506103e0610c70565b34801561044457600080fd5b50610411610c7f565b34801561045957600080fd5b506103b76004803603606081101561047057600080fd5b506001600160a01b03813581169160208101359091169060400135610c85565b34801561049c57600080fd5b506103e0610d0c565b3480156104b157600080fd5b506104ba610d1b565b005b3480156104c857600080fd5b50610411610e13565b3480156104dd57600080fd5b506104e6610e89565b6040805160ff9092168252519081900360200190f35b34801561050857600080fd5b506103b76004803603604081101561051f57600080fd5b506001600160a01b038135169060200135610e92565b34801561054157600080fd5b506103e0610ee0565b34801561055657600080fd5b506103b7610f04565b34801561056b57600080fd5b506103b7610f14565b34801561058057600080fd5b506104ba610f24565b34801561059557600080fd5b506103b7600480360360208110156105ac57600080fd5b50356001600160a01b0316610fa9565b3480156105c857600080fd5b50610411610fc7565b3480156105dd57600080fd5b506104ba600480360360208110156105f457600080fd5b50356001600160a01b031661100c565b34801561061057600080fd5b506104116004803603602081101561062757600080fd5b50356001600160a01b0316611118565b34801561064357600080fd5b5061041161119b565b34801561065857600080fd5b506104ba6004803603602081101561066f57600080fd5b50356111a1565b34801561068257600080fd5b506104116004803603602081101561069957600080fd5b50356001600160a01b0316611288565b3480156106b557600080fd5b506104ba6112a3565b3480156106ca57600080fd5b506103b7600480360360408110156106e157600080fd5b506001600160a01b038135169060200135611355565b34801561070357600080fd5b506104ba6004803603602081101561071a57600080fd5b503561149e565b34801561072d57600080fd5b506104ba6004803603602081101561074457600080fd5b5035611505565b34801561075757600080fd5b506104ba6004803603602081101561076e57600080fd5b50356001600160a01b031661162c565b34801561078a57600080fd5b506103e061198d565b34801561079f57600080fd5b506103096119a1565b3480156107b457600080fd5b506104ba600480360360408110156107cb57600080fd5b506001600160a01b0381351690602001351515611a02565b3480156107ef57600080fd5b50610411611adf565b34801561080457600080fd5b50610411611ae5565b34801561081957600080fd5b506103b76004803603604081101561083057600080fd5b506001600160a01b038135169060200135611b2a565b34801561085257600080fd5b506104116004803603602081101561086957600080fd5b50356001600160a01b0316611b92565b34801561088557600080fd5b506103b76004803603604081101561089c57600080fd5b506001600160a01b038135169060200135611be3565b3480156108be57600080fd5b506104ba600480360360208110156108d557600080fd5b50356001600160a01b0316611bf7565b3480156108f157600080fd5b506109186004803603602081101561090857600080fd5b50356001600160a01b0316611c7b565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b34801561096f57600080fd5b506103b76004803603602081101561098657600080fd5b50356001600160a01b0316611d5b565b3480156109a257600080fd5b506104ba600480360360408110156109b957600080fd5b506001600160a01b0381351690602001351515611d70565b3480156109dd57600080fd5b506104ba600480360360408110156109f457600080fd5b810190602081018135640100000000811115610a0f57600080fd5b820183602082011115610a2157600080fd5b80359060200191846020830284011164010000000083111715610a4357600080fd5b9193509150351515611e90565b348015610a5c57600080fd5b506103e0611fba565b348015610a7157600080fd5b5061041160048036036040811015610a8857600080fd5b506001600160a01b0381358116916020013516611fc9565b348015610aac57600080fd5b506103e0611ff4565b348015610ac157600080fd5b506104ba60048036036020811015610ad857600080fd5b50351515612018565b348015610aed57600080fd5b50610411612098565b348015610b0257600080fd5b5061041161209e565b348015610b1757600080fd5b506104ba60048036036020811015610b2e57600080fd5b50356120e3565b348015610b4157600080fd5b5061091860048036036020811015610b5857600080fd5b50356121ad565b348015610b6b57600080fd5b506104ba60048036036020811015610b8257600080fd5b50356001600160a01b0316612213565b348015610b9e57600080fd5b50610411612321565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b6000610c51610c4a612388565b848461238c565b5060015b92915050565b6010546001600160a01b031681565b600d5481565b6006546001600160a01b031681565b60025490565b6000610c92848484612478565b610d0284610c9e612388565b610cfd856040518060600160405280602881526020016134fb602891396001600160a01b038a16600090815260016020526040812090610cdc612388565b6001600160a01b031681526020810191909152604001600020549190612905565b61238c565b5060019392505050565b6007546001600160a01b031681565b604080516370a0823160e01b81523060048201819052915160009183916370a0823191602480820192602092909190829003018186803b158015610d5e57600080fd5b505afa158015610d72573d6000803e3d6000fd5b505050506040513d6020811015610d8857600080fd5b50516014546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b158015610de357600080fd5b505af1158015610df7573d6000803e3d6000fd5b505050506040513d6020811015610e0d57600080fd5b50505050565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610e5857600080fd5b505afa158015610e6c573d6000803e3d6000fd5b505050506040513d6020811015610e8257600080fd5b5051905090565b60055460ff1690565b6000610c51610e9f612388565b84610cfd8560016000610eb0612388565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612327565b7f0000000000000000000000009d6f3c2bc63cf0cb496bf0042325bd4c8a179bc181565b601054600160a01b900460ff1681565b601054600160a01b900460ff1690565b6007546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b158015610f7b57600080fd5b505af1158015610f8f573d6000803e3d6000fd5b505050506040513d6020811015610fa557600080fd5b5050565b6001600160a01b031660009081526011602052604090205460ff1690565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610e5857600080fd5b611014612388565b6001600160a01b031661102561198d565b6001600160a01b03161461106e576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156110bb5760405162461bcd60e51b815260040180806020018281038252602981526020018061346f6029913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600754604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561116957600080fd5b505afa15801561117d573d6000803e3d6000fd5b505050506040513d602081101561119357600080fd5b505192915050565b600c5481565b600754604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156111f857600080fd5b505af115801561120c573d6000803e3d6000fd5b505050506040513d606081101561122257600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b6112ab612388565b6001600160a01b03166112bc61198d565b6001600160a01b031614611305576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6000816113d157604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156113a257600080fd5b505afa1580156113b6573d6000803e3d6000fd5b505050506040513d60208110156113cc57600080fd5b505191505b604080516001600160a01b03851681526020810184905281517fda2bc2bedd1f85b5a59d5dbbd6684ff877ef916994a16ec08813101e99ace65f929181900390910190a16014546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b15801561146b57600080fd5b505af115801561147f573d6000803e3d6000fd5b505050506040513d602081101561149557600080fd5b50519392505050565b6114a6612388565b6001600160a01b03166114b761198d565b6001600160a01b031614611500576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b600a55565b61150d612388565b6001600160a01b031661151e61198d565b6001600160a01b031614611567576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b62030d40811015801561157d57506207a1208111155b6115b85760405162461bcd60e51b815260040180806020018281038252603a8152602001806133dd603a913960400191505060405180910390fd5b600f548114156115f95760405162461bcd60e51b815260040180806020018281038252603281526020018061343d6032913960400191505060405180910390fd5b600f5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600f55565b611634612388565b6001600160a01b031661164561198d565b6001600160a01b03161461168e576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6007546001600160a01b03828116911614156116db5760405162461bcd60e51b81526004018080602001828103825260338152602001806135fe6033913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561172357600080fd5b505afa158015611737573d6000803e3d6000fd5b505050506040513d602081101561174d57600080fd5b50516001600160a01b0316146117945760405162461bcd60e51b815260040180806020018281038252604b815260200180613523604b913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156117e357600080fd5b505af11580156117f7573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b15801561184257600080fd5b505af1158015611856573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db061187161198d565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156118b057600080fd5b505af11580156118c4573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b15801561191657600080fd5b505af115801561192a573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b60055461010090046001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c335780601f10610c0857610100808354040283529160200191610c33565b611a0a612388565b6001600160a01b0316611a1b61198d565b6001600160a01b031614611a64576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b7f0000000000000000000000009d6f3c2bc63cf0cb496bf0042325bd4c8a179bc16001600160a01b0316826001600160a01b03161415611ad55760405162461bcd60e51b815260040180806020018281038252604b8152602001806135b3604b913960600191505060405180910390fd5b610fa5828261299c565b600f5481565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610e5857600080fd5b6000610c51611b37612388565b84610cfd856040518060600160405280602581526020016136856025913960016000611b61612388565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612905565b600754604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561116957600080fd5b6000610c51611bf0612388565b8484612478565b611bff612388565b6001600160a01b0316611c1061198d565b6001600160a01b031614611c59576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080600760009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b158015611cea57600080fd5b505afa158015611cfe573d6000803e3d6000fd5b505050506040513d610100811015611d1557600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b60136020526000908152604090205460ff1681565b611d78612388565b6001600160a01b0316611d8961198d565b6001600160a01b031614611dd2576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526011602052604090205460ff1615158115151415611e305760405162461bcd60e51b81526004018080602001828103825260308152602001806136316030913960400191505060405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b611e98612388565b6001600160a01b0316611ea961198d565b6001600160a01b031614611ef2576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b60005b82811015611f47578160116000868685818110611f0e57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611ef5565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b6008546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7f00000000000000000000000045804880de22913dafe09f4980848ece6ecbaf7881565b612020612388565b6001600160a01b031661203161198d565b6001600160a01b03161461207a576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b60108054911515600160a01b0260ff60a01b19909216919091179055565b600a5481565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610e5857600080fd5b6120eb612388565b6001600160a01b03166120fc61198d565b6001600160a01b031614612145576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6007546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561219257600080fd5b505af11580156121a6573d6000803e3d6000fd5b5050505050565b600080600080600080600080600760009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b158015611cea57600080fd5b61221b612388565b6001600160a01b031661222c61198d565b6001600160a01b031614612275576040805162461bcd60e51b8152602060048201819052602482015260008051602061356e833981519152604482015290519081900360640190fd5b6001600160a01b0381166122ba5760405162461bcd60e51b81526004018080602001828103825260268152602001806133576026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600b5481565b600082820183811015612381576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166123d15760405162461bcd60e51b81526004018080602001828103825260248152602001806136616024913960400191505060405180910390fd5b6001600160a01b0382166124165760405162461bcd60e51b815260040180806020018281038252602281526020018061337d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166124bd5760405162461bcd60e51b815260040180806020018281038252602581526020018061358e6025913960400191505060405180910390fd5b6001600160a01b0382166125025760405162461bcd60e51b81526004018080602001828103825260238152602001806133346023913960400191505060405180910390fd5b600061250c610f14565b90508061256a576001600160a01b03841660009081526012602052604090205460ff1661256a5760405162461bcd60e51b81526004018080602001828103825260428152602001806134986042913960600191505060405180910390fd5b816125815761257b84846000612aca565b50612900565b600061258c30611288565b600a5490915081101582801561259f5750805b80156125b55750600654600160a01b900460ff16155b80156125da57506001600160a01b03861660009081526013602052604090205460ff16155b80156125f457506008546001600160a01b03878116911614155b801561260e57506008546001600160a01b03868116911614155b15612675576006805460ff60a01b1916600160a01b179055600d54600c546000916126449161263e908690612c25565b90612c7e565b905061264f81612ce5565b600061265a30611288565b905061266581612d36565b50506006805460ff60a01b191690555b600083801561268e5750600654600160a01b900460ff16155b6001600160a01b03881660009081526011602052604090205490915060ff16806126d057506001600160a01b03861660009081526011602052604090205460ff165b156126d9575060005b80156127165760006126fb606461263e600d5489612c2590919063ffffffff16565b90506127078682612f30565b9550612714883083612aca565b505b612721878787612aca565b6007546001600160a01b031663e30443bc8861273c81611288565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561278257600080fd5b505af1925050508015612793575060015b506007546001600160a01b031663e30443bc876127af81611288565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156127f557600080fd5b505af1925050508015612806575060015b50600654600160a01b900460ff166128fb57600f54600754604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561286c57600080fd5b505af19250505080156128a057506040513d606081101561288c57600080fd5b508051602082015160409092015190919060015b6128a9576128f9565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b505050505b505050565b600081848411156129945760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612959578181015183820152602001612941565b50505050905090810190601f1680156129865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526013602052604090205460ff16151581151514156129fa5760405162461bcd60e51b815260040180806020018281038252603e81526020018061339f603e913960400191505060405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155612a8e576007546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015612a7557600080fd5b505af1158015612a89573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316612b0f5760405162461bcd60e51b815260040180806020018281038252602581526020018061358e6025913960400191505060405180910390fd5b6001600160a01b038216612b545760405162461bcd60e51b81526004018080602001828103825260238152602001806133346023913960400191505060405180910390fd5b612b5f838383612900565b612b9c81604051806060016040528060268152602001613417602691396001600160a01b0386166000908152602081905260409020549190612905565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612bcb9082612327565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082612c3457506000610c55565b82820282848281612c4157fe5b04146123815760405162461bcd60e51b81526004018080602001828103825260218152602001806134da6021913960400191505060405180910390fd5b6000808211612cd4576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381612cdd57fe5b049392505050565b47612cef82612f8d565b6000612cfb4783612f30565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610e0d573d6000803e3d6000fd5b612d40813061313c565b60007f00000000000000000000000045804880de22913dafe09f4980848ece6ecbaf786001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015612daf57600080fd5b505afa158015612dc3573d6000803e3d6000fd5b505050506040513d6020811015612dd957600080fd5b50516007546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293506000927f00000000000000000000000045804880de22913dafe09f4980848ece6ecbaf789092169163a9059cbb9160448082019260209290919082900301818787803b158015612e5757600080fd5b505af1158015612e6b573d6000803e3d6000fd5b505050506040513d6020811015612e8157600080fd5b5051905080156129005760075460408051633c24c9b560e21b81526004810185905290516001600160a01b039092169163f09326d49160248082019260009290919082900301818387803b158015612ed857600080fd5b505af1158015612eec573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b600082821115612f87576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612fbc57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561301057600080fd5b505afa158015613024573d6000803e3d6000fd5b505050506040513d602081101561303a57600080fd5b505181518290600190811061304b57fe5b6001600160a01b039283166020918202929092010152600654613071913091168461238c565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156130f75781810151838201526020016130df565b505050509050019650505050505050600060405180830381600087803b15801561312057600080fd5b505af1158015613134573d6000803e3d6000fd5b505050505050565b6040805160038082526080820190925260009160208201606080368337019050509050308160008151811061316d57fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156131c157600080fd5b505afa1580156131d5573d6000803e3d6000fd5b505050506040513d60208110156131eb57600080fd5b50518151829060019081106131fc57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000045804880de22913dafe09f4980848ece6ecbaf788160028151811061324a57fe5b6001600160a01b039283166020918202929092010152600654613270913091168561238c565b600654604051635c11d79560e01b8152600481018581526000602483018190526001600160a01b038681166064850152426084850181905260a060448601908152875160a487015287519290961695635c11d795958a9589948b9493919260c40190602080880191028083838b5b838110156132f65781810151838201526020016132de565b505050509050019650505050505050600060405180830381600087803b15801561331f57600080fd5b505af11580156128fb573d6000803e3d6000fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734449504f3a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c75654449504f3a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c30303045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654449504f3a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c75654449504f3a2054686520726f7574657220616c726561647920686173207468617420616464726573735a657573555344543a2054686973206163636f756e742063616e6e6f742073656e6420746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654449504f3a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e656420627920746865205a6575735553445420746f6b656e20636f6e74726163744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734449504f3a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657250616972734449504f3a20546865206469766964656e6420747261636b657220616c726561647920686173207468617420616464726573734449504f3a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c756465642745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122060b445d052cd20b63a4681a9614cc825629036a0b105addbce4be0ed74a96c7764736f6c63430007060033
Deployed Bytecode Sourcemap
47373:16820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22222:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24368:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24368:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48197:42;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;48197:42:0;;;;;;;;;;;;;;47996:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47447:41;;;;;;;;;;;;;:::i;23321:108::-;;;;;;;;;;;;;:::i;25019:321::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25019:321:0;;;;;;;;;;;;;;;;;:::i;47669:42::-;;;;;;;;;;;;;:::i;52827:216::-;;;;;;;;;;;;;:::i;:::-;;56179:141;;;;;;;;;;;;;:::i;23165:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25749:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25749:218:0;;;;;;;;:::i;47495:38::-;;;;;;;;;;;;;:::i;48321:34::-;;;;;;;;;;;;;:::i;58050:160::-;;;;;;;;;;;;;:::i;57671:88::-;;;;;;;;;;;;;:::i;56328:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56328:125:0;-1:-1:-1;;;;;56328:125:0;;:::i;57901:141::-;;;;;;;;;;;;;:::i;53899:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53899:313:0;-1:-1:-1;;;;;53899:313:0;;:::i;56613:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56613:130:0;-1:-1:-1;;;;;56613:130:0;;:::i;47956:27::-;;;;;;;;;;;;;:::i;57404:259::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57404:259:0;;:::i;23492:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23492:127:0;-1:-1:-1;;;;;23492:127:0;;:::i;14944:148::-;;;;;;;;;;;;;:::i;52017:338::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52017:338:0;;;;;;;;:::i;52480:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52480:113:0;;:::i;55519:404::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55519:404:0;;:::i;53053:834::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53053:834:0;-1:-1:-1;;;;;53053:834:0;;:::i;14293:87::-;;;;;;;;;;;;;:::i;22432:95::-;;;;;;;;;;;;;:::i;54836:262::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54836:262:0;;;;;;;;;;:::i;48144:40::-;;;;;;;;;;;;;:::i;56063:108::-;;;;;;;;;;;;;:::i;26470:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26470:269:0;;;;;;;;:::i;56461:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56461:147:0;-1:-1:-1;;;;;56461:147:0;;:::i;23832:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23832:175:0;;;;;;;;:::i;52702:117::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52702:117:0;-1:-1:-1;;;;;52702:117:0;;:::i;56751:318::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56751:318:0;-1:-1:-1;;;;;56751:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;56751:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48769:58;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48769:58:0;-1:-1:-1;;;;;48769:58:0;;:::i;54220:296::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54220:296:0;;;;;;;;;;:::i;54524:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54524:304:0;-1:-1:-1;54524:304:0;;;;:::i;47720:30::-;;;;;;;;;;;;;:::i;24070:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24070:151:0;;;;;;;;;;:::i;47542:88::-;;;;;;;;;;;;;:::i;52365:99::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52365:99:0;;;;:::i;47822:58::-;;;;;;;;;;;;;:::i;57767:126::-;;;;;;;;;;;;;:::i;55931:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55931:124:0;;:::i;57074:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57074:325:0;;:::i;15247:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15247:244:0;-1:-1:-1;;;;;15247:244:0;;:::i;47918:25::-;;;;;;;;;;;;;:::i;22222:91::-;22300:5;22293:12;;;;;;;;-1:-1:-1;;22293:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22267:13;;22293:12;;22300:5;;22293:12;;22300:5;22293:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22222:91;:::o;24368:169::-;24451:4;24468:39;24477:12;:10;:12::i;:::-;24491:7;24500:6;24468:8;:39::i;:::-;-1:-1:-1;24525:4:0;24368:169;;;;;:::o;48197:42::-;;;-1:-1:-1;;;;;48197:42:0;;:::o;47996:24::-;;;;:::o;47447:41::-;;;-1:-1:-1;;;;;47447:41:0;;:::o;23321:108::-;23409:12;;23321:108;:::o;25019:321::-;25125:4;25142:36;25152:6;25160:9;25171:6;25142:9;:36::i;:::-;25189:121;25198:6;25206:12;:10;:12::i;:::-;25220:89;25258:6;25220:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25220:19:0;;;;;;:11;:19;;;;;;25240:12;:10;:12::i;:::-;-1:-1:-1;;;;;25220:33:0;;;;;;;;;;;;-1:-1:-1;25220:33:0;;;:89;:37;:89::i;:::-;25189:8;:121::i;:::-;-1:-1:-1;25328:4:0;25019:321;;;;;:::o;47669:42::-;;;-1:-1:-1;;;;;47669:42:0;;:::o;52827:216::-;52938:35;;;-1:-1:-1;;;52938:35:0;;52903:4;52938:35;;;;;;;;52868:17;;52903:4;;52938:20;;:35;;;;;;;;;;;;;;;52903:4;52938:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52938:35:0;53004:21;;52984:51;;;-1:-1:-1;;;52984:51:0;;-1:-1:-1;;;;;53004:21:0;;;52984:51;;;;;;;;;;;;52938:35;;-1:-1:-1;52984:19:0;;;;;;:51;;;;;52938:35;;52984:51;;;;;;;;53004:21;52984:19;:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;52827:216:0:o;56179:141::-;56269:15;;:43;;;-1:-1:-1;;;56269:43:0;;;;56242:7;;-1:-1:-1;;;;;56269:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56269:43:0;;-1:-1:-1;56179:141:0;:::o;23165:91::-;23239:9;;;;23165:91;:::o;25749:218::-;25837:4;25854:83;25863:12;:10;:12::i;:::-;25877:7;25886:50;25925:10;25886:11;:25;25898:12;:10;:12::i;:::-;-1:-1:-1;;;;;25886:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25886:25:0;;;:34;;;;;;;;;;;:38;:50::i;47495:38::-;;;:::o;48321:34::-;;;-1:-1:-1;;;48321:34:0;;;;;:::o;58050:160::-;58188:14;;-1:-1:-1;;;58188:14:0;;;;;58050:160::o;57671:88::-;57702:15;;:49;;;-1:-1:-1;;;57702:49:0;;57733:10;57702:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;57702:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57671:88:0:o;56328:125::-;-1:-1:-1;;;;;56417:28:0;56393:4;56417:28;;;:19;:28;;;;;;;;;56328:125::o;57901:141::-;57993:15;;:41;;;-1:-1:-1;;;57993:41:0;;;;57966:7;;-1:-1:-1;;;;;57993:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;53899:313;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;54008:15:::1;::::0;-1:-1:-1;;;;;53986:38:0;;::::1;54008:15:::0;::::1;53986:38;;53978:92;;;;-1:-1:-1::0;;;53978:92:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54128:15;::::0;54086:59:::1;::::0;-1:-1:-1;;;;;54128:15:0;;::::1;::::0;54086:59;::::1;::::0;::::1;::::0;54128:15:::1;::::0;54086:59:::1;54156:15;:48:::0;;-1:-1:-1;;;;;;54156:48:0::1;-1:-1:-1::0;;;;;54156:48:0;;;::::1;::::0;;;::::1;::::0;;53899:313::o;56613:130::-;56704:15;;:34;;;-1:-1:-1;;;56704:34:0;;-1:-1:-1;;;;;56704:34:0;;;;;;;;;56683:7;;56704:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56704:34:0;;56613:130;-1:-1:-1;;56613:130:0:o;47956:27::-;;;;:::o;57404:259::-;57530:15;;:28;;;-1:-1:-1;;;;;;57530:28:0;;;;;;;;;;57464:18;;;;;;-1:-1:-1;;;;;57530:15:0;;;;:23;;:28;;;;;;;;;;;;;;;57464:18;57530:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57530:28:0;;;;;;;;;;;;57568:87;;;;;;;;;;;;;;;;;57530:28;57568:87;;;;;;;57530:28;;-1:-1:-1;57530:28:0;-1:-1:-1;57530:28:0;;-1:-1:-1;57645:9:0;;57633:5;;57568:87;;;;;;;;;57404:259;;;;:::o;23492:127::-;-1:-1:-1;;;;;23593:18:0;23566:7;23593:18;;;;;;;;;;;;23492:127::o;14944:148::-;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;15035:6:::1;::::0;15014:40:::1;::::0;15051:1:::1;::::0;15035:6:::1;::::0;::::1;-1:-1:-1::0;;;;;15035:6:0::1;::::0;15014:40:::1;::::0;15051:1;;15014:40:::1;15065:6;:19:::0;;-1:-1:-1;;;;;;15065:19:0::1;::::0;;14944:148::o;52017:338::-;52098:12;52131:11;52128:95;;52167:44;;;-1:-1:-1;;;52167:44:0;;52205:4;52167:44;;;;;;-1:-1:-1;;;;;52167:29:0;;;;;:44;;;;;;;;;;;;;;:29;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52167:44:0;;-1:-1:-1;52128:95:0;52238:32;;;-1:-1:-1;;;;;52238:32:0;;;;;;;;;;;;;;;;;;;;;;;52317:21;;52288:59;;;-1:-1:-1;;;52288:59:0;;-1:-1:-1;;;;;52317:21:0;;;52288:59;;;;;;;;;;;;:28;;;;;;:59;;;;;;;;;;;;;;;52317:21;52288:28;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52288:59:0;;52017:338;-1:-1:-1;;;52017:338:0:o;52480:113::-;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;52558:18:::1;:27:::0;52480:113::o;55519:404::-;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;55617:6:::1;55605:8;:18;;:40;;;;;55639:6;55627:8;:18;;55605:40;55597:111;;;;-1:-1:-1::0;;;55597:111:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55739:16;;55727:8;:28;;55719:91;;;;-1:-1:-1::0;;;55719:91:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55860:16;::::0;55826:51:::1;::::0;55850:8;;55826:51:::1;::::0;;;::::1;55888:16;:27:::0;55519:404::o;53053:834::-;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;53162:15:::1;::::0;-1:-1:-1;;;;;53140:38:0;;::::1;53162:15:::0;::::1;53140:38;;53132:102;;;;-1:-1:-1::0;;;53132:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53247:38;53316:10;53247:81;;53387:4;-1:-1:-1::0;;;;;53349:43:0::1;:18;-1:-1:-1::0;;;;;53349:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53349:26:0;-1:-1:-1;;;;;53349:43:0::1;;53341:131;;;;-1:-1:-1::0;;;53341:131:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53485:18;-1:-1:-1::0;;;;;53485:39:0::1;;53533:18;53485:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;53485:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;53564:54:0::1;::::0;;-1:-1:-1;;;53564:54:0;;53612:4:::1;53564:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;53564:39:0;::::1;::::0;-1:-1:-1;53564:39:0::1;::::0;-1:-1:-1;53564:54:0;;;;;-1:-1:-1;;53564:54:0;;;;;;;-1:-1:-1;53564:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53629:18;-1:-1:-1::0;;;;;53629:39:0::1;;53669:7;:5;:7::i;:::-;53629:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;53629:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;53736:15:0::1;::::0;53688:65:::1;::::0;;-1:-1:-1;;;53688:65:0;;-1:-1:-1;;;;;53736:15:0;;::::1;53688:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;53688:39:0::1;::::0;-1:-1:-1;53688:65:0;;;;;53736:15:::1;::::0;53688:65;;;;;;;;53736:15;53688:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;53813:15:0::1;::::0;53771:59:::1;::::0;-1:-1:-1;;;;;53813:15:0;;::::1;::::0;-1:-1:-1;53771:59:0;;::::1;::::0;-1:-1:-1;53771:59:0::1;::::0;53813:15:::1;::::0;53771:59:::1;53843:15;:36:::0;;-1:-1:-1;;;;;;53843:36:0::1;-1:-1:-1::0;;;;;53843:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;53053:834:0:o;14293:87::-;14366:6;;;;;-1:-1:-1;;;;;14366:6:0;;14293:87::o;22432:95::-;22512:7;22505:14;;;;;;;;-1:-1:-1;;22505:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22479:13;;22505:14;;22512:7;;22505:14;;22512:7;22505:14;;;;;;;;;;;;;;;;;;;;;;;;54836:262;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;54943:13:::1;-1:-1:-1::0;;;;;54935:21:0::1;:4;-1:-1:-1::0;;;;;54935:21:0::1;;;54927:109;;;;-1:-1:-1::0;;;54927:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55049:41;55078:4;55084:5;55049:28;:41::i;48144:40::-:0;;;;:::o;56063:108::-;56136:15;;:27;;;-1:-1:-1;;;56136:27:0;;;;56109:7;;-1:-1:-1;;;;;56136:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;26470:269;26563:4;26580:129;26589:12;:10;:12::i;:::-;26603:7;26612:96;26651:15;26612:96;;;;;;;;;;;;;;;;;:11;:25;26624:12;:10;:12::i;:::-;-1:-1:-1;;;;;26612:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26612:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;56461:147::-;56554:15;;:47;;;-1:-1:-1;;;56554:47:0;;-1:-1:-1;;;;;56554:47:0;;;;;;;;;56530:7;;56554:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;23832:175;23918:4;23935:42;23945:12;:10;:12::i;:::-;23959:9;23970:6;23935:9;:42::i;52702:117::-;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;52786:16:::1;:25:::0;;-1:-1:-1;;;;;;52786:25:0::1;-1:-1:-1::0;;;;;52786:25:0;;;::::1;::::0;;;::::1;::::0;;52702:117::o;56751:318::-;56847:7;56869:6;56890;56911:7;56933;56955;56977;56999;57026:15;;;;;;;;;-1:-1:-1;;;;;57026:15:0;-1:-1:-1;;;;;57026:26:0;;57053:7;57026:35;;;;;;;;;;;;;-1:-1:-1;;;;;57026:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57026:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57026:35:0;;-1:-1:-1;57026:35:0;;-1:-1:-1;57026:35:0;-1:-1:-1;57026:35:0;-1:-1:-1;57026:35:0;-1:-1:-1;57026:35:0;;-1:-1:-1;57026:35:0;-1:-1:-1;56751:318:0;;;;;;;;;:::o;48769:58::-;;;;;;;;;;;;;;;:::o;54220:296::-;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;54313:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;54305:101;;;;-1:-1:-1::0;;;54305:101:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;54417:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;54417:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;54474:34;;;;;;;::::1;::::0;;;;;;;;::::1;54220:296:::0;;:::o;54524:304::-;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;54641:9:::1;54637:115;54656:19:::0;;::::1;54637:115;;;54732:8;54697:19;:32;54717:8;;54726:1;54717:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;54717:11:0::1;54697:32:::0;;-1:-1:-1;54697:32:0;::::1;::::0;;;;;;-1:-1:-1;54697:32:0;:43;;-1:-1:-1;;54697:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;54677:3:0::1;54637:115;;;;54769:51;54801:8;;54811;54769:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;54769:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;54769:51:0;;-1:-1:-1;;;;;54769:51:0::1;54524:304:::0;;;:::o;47720:30::-;;;-1:-1:-1;;;;;47720:30:0;;:::o;24070:151::-;-1:-1:-1;;;;;24186:18:0;;;24159:7;24186:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24070:151::o;47542:88::-;;;:::o;52365:99::-;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;52434:14:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;52434:22:0::1;-1:-1:-1::0;;;;52434:22:0;;::::1;::::0;;;::::1;::::0;;52365:99::o;47822:58::-;;;;:::o;57767:126::-;57846:15;;:39;;;-1:-1:-1;;;57846:39:0;;;;57822:7;;-1:-1:-1;;;;;57846:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;55931:124;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;56005:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;56005:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;56005:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55931:124:::0;:::o;57074:325::-;57175:7;57197:6;57218;57239:7;57261;57283;57305;57327;57351:15;;;;;;;;;-1:-1:-1;;;;;57351:15:0;-1:-1:-1;;;;;57351:33:0;;57385:5;57351:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15247:244;14524:12;:10;:12::i;:::-;-1:-1:-1;;;;;14513:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;14513:23:0;;14505:68;;;;;-1:-1:-1;;;14505:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14505:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15336:22:0;::::1;15328:73;;;;-1:-1:-1::0;;;15328:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15438:6;::::0;15417:38:::1;::::0;-1:-1:-1;;;;;15417:38:0;;::::1;::::0;15438:6:::1;::::0;::::1;;::::0;15417:38:::1;::::0;;;::::1;15466:6;:17:::0;;-1:-1:-1;;;;;15466:17:0;;::::1;;;-1:-1:-1::0;;;;;;15466:17:0;;::::1;::::0;;;::::1;::::0;;15247:244::o;47918:25::-;;;;:::o;33801:179::-;33859:7;33891:5;;;33915:6;;;;33907:46;;;;;-1:-1:-1;;;33907:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33971:1;33801:179;-1:-1:-1;;;33801:179:0:o;3325:106::-;3413:10;3325:106;:::o;29617:346::-;-1:-1:-1;;;;;29719:19:0;;29711:68;;;;-1:-1:-1;;;29711:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29798:21:0;;29790:68;;;;-1:-1:-1;;;29790:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29871:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29923:32;;;;;;;;;;;;;;;;;29617:346;;;:::o;58490:2461::-;-1:-1:-1;;;;;58622:18:0;;58614:68;;;;-1:-1:-1;;;58614:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58701:16:0;;58693:64;;;;-1:-1:-1;;;58693:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58770:21;58794;:19;:21::i;:::-;58770:45;;58973:16;58969:167;;-1:-1:-1;;;;;59014:39:0;;;;;;:33;:39;;;;;;;;59006:118;;;;-1:-1:-1;;;59006:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59151:11;59148:92;;59179:28;59195:4;59201:2;59205:1;59179:15;:28::i;:::-;59222:7;;;59148:92;59248:28;59279:24;59297:4;59279:9;:24::i;:::-;59363:18;;59248:55;;-1:-1:-1;59339:42:0;;;59411:16;:41;;;;;59445:7;59411:41;:67;;;;-1:-1:-1;59470:8:0;;-1:-1:-1;;;59470:8:0;;;;59469:9;59411:67;:116;;;;-1:-1:-1;;;;;;59496:31:0;;;;;;:25;:31;;;;;;;;59495:32;59411:116;:156;;;;-1:-1:-1;59552:15:0;;-1:-1:-1;;;;;59544:23:0;;;59552:15;;59544:23;;59411:156;:194;;;;-1:-1:-1;59590:15:0;;-1:-1:-1;;;;;59584:21:0;;;59590:15;;59584:21;;59411:194;59394:560;;;59632:8;:15;;-1:-1:-1;;;;59632:15:0;-1:-1:-1;;;59632:15:0;;;59743:9;;59725:12;;59632:15;;59700:53;;:38;;:20;;:24;:38::i;:::-;:42;;:53::i;:::-;59674:79;;59768:32;59784:15;59768;:32::i;:::-;59817:18;59838:24;59856:4;59838:9;:24::i;:::-;59817:45;;59877:32;59898:10;59877:20;:32::i;:::-;-1:-1:-1;;59926:8:0;:16;;-1:-1:-1;;;;59926:16:0;;;59394:560;59968:12;59983:16;:29;;;;-1:-1:-1;60004:8:0;;-1:-1:-1;;;60004:8:0;;;;60003:9;59983:29;-1:-1:-1;;;;;60113:25:0;;;;;;:19;:25;;;;;;59968:44;;-1:-1:-1;60113:25:0;;;:52;;-1:-1:-1;;;;;;60142:23:0;;;;;;:19;:23;;;;;;;;60113:52;60110:99;;;-1:-1:-1;60192:5:0;60110:99;60224:7;60221:181;;;60245:12;60260:30;60286:3;60260:21;60271:9;;60260:6;:10;;:21;;;;:::i;:30::-;60245:45;-1:-1:-1;60315:16:0;:6;60245:45;60315:10;:16::i;:::-;60306:25;;60348:42;60364:4;60378;60385;60348:15;:42::i;:::-;60221:181;;60414:33;60430:4;60436:2;60440:6;60414:15;:33::i;:::-;60464:15;;-1:-1:-1;;;;;60464:15:0;:26;60499:4;60506:15;60499:4;60506:9;:15::i;:::-;60464:58;;;;;;;;;;;;;-1:-1:-1;;;;;60464:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60460:74;60548:15;;-1:-1:-1;;;;;60548:15:0;:26;60583:2;60588:13;60583:2;60588:9;:13::i;:::-;60548:54;;;;;;;;;;;;;-1:-1:-1;;;;;60548:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60544:70;60630:8;;-1:-1:-1;;;60630:8:0;;;;60626:318;;60663:16;;60694:15;;:28;;;-1:-1:-1;;;;;;60694:28:0;;;;;;;;;;-1:-1:-1;;;;;60694:15:0;;;;:23;;:28;;;;;;;;;;;;;;;60649:11;60694:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60694:28:0;;;;;;;;;;;;;;;;60690:243;;;;;60811:86;;;;;;;;;;;;;;;;;;;;;;;;;;60887:9;;60876:4;;60811:86;;;;;;;;;60723:184;;;60690:243;60626:318;;58490:2461;;;;;;;;:::o;36628:166::-;36714:7;36750:12;36742:6;;;;36734:29;;;;-1:-1:-1;;;36734:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36781:5:0;;;36628:166::o;55106:405::-;-1:-1:-1;;;;;55197:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;55189:115;;;;-1:-1:-1;;;55189:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55315:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;55315:39:0;;;;;;;;;;;;55367:79;;55392:15;;:42;;;-1:-1:-1;;;55392:42:0;;-1:-1:-1;;;;;55392:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55367:79;55463:40;;;;;;-1:-1:-1;;;;;55463:40:0;;;;;;;;55106:405;;:::o;27229:539::-;-1:-1:-1;;;;;27335:20:0;;27327:70;;;;-1:-1:-1;;;27327:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27416:23:0;;27408:71;;;;-1:-1:-1;;;27408:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27492:47;27513:6;27521:9;27532:6;27492:20;:47::i;:::-;27572:71;27594:6;27572:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27572:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;27552:17:0;;;:9;:17;;;;;;;;;;;:91;;;;27677:20;;;;;;;:32;;27702:6;27677:24;:32::i;:::-;-1:-1:-1;;;;;27654:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;27725:35;;;;;;;27654:20;;27725:35;;;;;;;;;;;;;27229:539;;;:::o;34680:220::-;34738:7;34762:6;34758:20;;-1:-1:-1;34777:1:0;34770:8;;34758:20;34801:5;;;34805:1;34801;:5;:1;34825:5;;;;;:10;34817:56;;;;-1:-1:-1;;;34817:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35378:153;35436:7;35468:1;35464;:5;35456:44;;;;;-1:-1:-1;;;35456:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35522:1;35518;:5;;;;;;;35378:153;-1:-1:-1;;;35378:153:0:o;58218:260::-;58303:21;58336:24;58353:6;58336:16;:24::i;:::-;58371:12;58386:41;:21;58412:14;58386:25;:41::i;:::-;58439:16;;:31;;58371:56;;-1:-1:-1;;;;;;58439:16:0;;:31;;;;;58371:56;;58439:16;:31;:16;:31;58371:56;58439:16;:31;;;;;;;;;;;;;;;;;;;63737:447;63802:45;63825:6;63841:4;63802:22;:45::i;:::-;63858:17;63885:9;-1:-1:-1;;;;;63878:27:0;;63914:4;63878:42;;;;;;;;;;;;;-1:-1:-1;;;;;63878:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63878:42:0;63981:15;;63946:63;;;-1:-1:-1;;;63946:63:0;;-1:-1:-1;;;;;63981:15:0;;;63946:63;;;;;;;;;;;;63878:42;;-1:-1:-1;;;63953:9:0;63946:26;;;;;;:63;;;;;63878:42;;63946:63;;;;;;;;-1:-1:-1;63946:26:0;:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63946:63:0;;-1:-1:-1;64030:147:0;;;;64058:15;;:55;;;-1:-1:-1;;;64058:55:0;;;;;;;;;;-1:-1:-1;;;;;64058:15:0;;;;:44;;:55;;;;;:15;;:55;;;;;;;;:15;;:55;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;64133:32:0;;;;;;;;;;;;;;;;-1:-1:-1;64133:32:0;;;;;;;;-1:-1:-1;64133:32:0;63737:447;;;:::o;34263:158::-;34321:7;34354:1;34349;:6;;34341:49;;;;;-1:-1:-1;;;34341:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34408:5:0;;;34263:158::o;61898:611::-;62060:16;;;62074:1;62060:16;;;;;;;;62036:21;;62060:16;;;;;;;;;;-1:-1:-1;62060:16:0;62036:40;;62105:4;62087;62092:1;62087:7;;;;;;;;-1:-1:-1;;;;;62087:23:0;;;:7;;;;;;;;;;:23;;;;62131:15;;:22;;;-1:-1:-1;;;62131:22:0;;;;:15;;;;;:20;;:22;;;;;62087:7;;62131:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62131:22:0;62121:7;;:4;;62126:1;;62121:7;;;;;;-1:-1:-1;;;;;62121:32:0;;;:7;;;;;;;;;:32;62198:15;;62166:62;;62183:4;;62198:15;62216:11;62166:8;:62::i;:::-;62267:15;;:224;;-1:-1:-1;;;62267:224:0;;;;;;;;:15;:224;;;;;;62445:4;62267:224;;;;;;62465:15;62267:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62267:15:0;;;;:66;;62348:11;;62418:4;;62445;62465:15;62267:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61898:611;;:::o;62519:662::-;62702:16;;;62716:1;62702:16;;;;;;;;;62678:21;;62702:16;;;;;;;;;;-1:-1:-1;62702:16:0;62678:40;;62747:4;62729;62734:1;62729:7;;;;;;;;-1:-1:-1;;;;;62729:23:0;;;:7;;;;;;;;;;:23;;;;62773:15;;:22;;;-1:-1:-1;;;62773:22:0;;;;:15;;;;;:20;;:22;;;;;62729:7;;62773:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62773:22:0;62763:7;;:4;;62768:1;;62763:7;;;;;;;;;;;:32;-1:-1:-1;;;;;62763:32:0;;;-1:-1:-1;;;;;62763:32:0;;;;;62816:9;62806:4;62811:1;62806:7;;;;;;;;-1:-1:-1;;;;;62806:19:0;;;:7;;;;;;;;;:19;62870:15;;62838:62;;62855:4;;62870:15;62888:11;62838:8;:62::i;:::-;62939:15;;:224;;-1:-1:-1;;;62939:224:0;;;;;;;;:15;:224;;;;;;-1:-1:-1;;;;;62939:224:0;;;;;;;63137:15;62939:224;;;;;;;;;;;;;;;;;;;;;:15;;;;;:69;;63023:11;;63094:4;;63113:9;;63137:15;62939:224;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://c4f1afad6290f60625f98040c46b17684495ecdca5555113cf1a7fa2f8d4f387
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.