Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AIPAD
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-05 */ // File: @openzeppelin/contracts-ethereum-package/contracts/utils/SafeCast.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's uintXX casting operators with added overflow * checks. * * Downcasting from uint256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such 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. * * Can be combined with {SafeMath} to extend it to smaller types, by performing * all math on `uint256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value < 2**128, "SafeCast: value doesn\'t fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value < 2**64, "SafeCast: value doesn\'t fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value < 2**32, "SafeCast: value doesn\'t fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value < 2**16, "SafeCast: value doesn\'t fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value < 2**8, "SafeCast: value doesn\'t fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { require(value < 2**255, "SafeCast: value doesn't fit in an int256"); return int256(value); } } // File: @openzeppelin/contracts-ethereum-package/contracts/Initializable.sol pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/GSN/Context.sol pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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. */ contract ContextUpgradeSafe is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } 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; } uint256[50] private __gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract OwnableUpgradeSafe is Initializable, ContextUpgradeSafe { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[49] private __gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts-ethereum-package/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } } pragma solidity ^0.6.0; library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } pragma solidity ^0.6.0; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address _owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } 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 IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract LGEWhitelisted is ContextUpgradeSafe { using SafeMath for uint256; struct WhitelistRound { uint256 duration; uint256 amountMax; mapping(address => bool) addresses; mapping(address => uint256) purchased; } WhitelistRound[] public _lgeWhitelistRounds; uint256 public _lgeTimestamp; address public _lgePairAddress; address public _whitelister; event WhitelisterTransferred(address indexed previousWhitelister, address indexed newWhitelister); function __LGEWhitelisted_init() internal initializer { __Context_init_unchained(); __LGEWhitelisted_init_unchained(); } function __LGEWhitelisted_init_unchained() internal initializer { _whitelister = _msgSender(); } modifier onlyWhitelister() { require(_whitelister == _msgSender(), "Caller is not the whitelister"); _; } function renounceWhitelister() external onlyWhitelister { emit WhitelisterTransferred(_whitelister, address(0)); _whitelister = address(0); } function transferWhitelister(address newWhitelister) external onlyWhitelister { _transferWhitelister(newWhitelister); } function _transferWhitelister(address newWhitelister) internal { require(newWhitelister != address(0), "New whitelister is the zero address"); emit WhitelisterTransferred(_whitelister, newWhitelister); _whitelister = newWhitelister; } /* * createLGEWhitelist - Call this after initial Token Generation Event (TGE) * * pairAddress - address generated from createPair() event on DEX * durations - array of durations (seconds) for each whitelist rounds * amountsMax - array of max amounts (TOKEN decimals) for each whitelist round * */ function createLGEWhitelist(address pairAddress, uint256[] calldata durations, uint256[] calldata amountsMax) external onlyWhitelister() { require(durations.length == amountsMax.length, "Invalid whitelist(s)"); _lgePairAddress = pairAddress; if(durations.length > 0) { delete _lgeWhitelistRounds; for (uint256 i = 0; i < durations.length; i++) { _lgeWhitelistRounds.push(WhitelistRound(durations[i], amountsMax[i])); } } } /* * modifyLGEWhitelistAddresses - Define what addresses are included/excluded from a whitelist round * * index - 0-based index of round to modify whitelist * duration - period in seconds from LGE event or previous whitelist round * amountMax - max amount (TOKEN decimals) for each whitelist round * */ function modifyLGEWhitelist(uint256 index, uint256 duration, uint256 amountMax, address[] calldata addresses, bool enabled) external onlyWhitelister() { require(index < _lgeWhitelistRounds.length, "Invalid index"); require(amountMax > 0, "Invalid amountMax"); if(duration != _lgeWhitelistRounds[index].duration) _lgeWhitelistRounds[index].duration = duration; if(amountMax != _lgeWhitelistRounds[index].amountMax) _lgeWhitelistRounds[index].amountMax = amountMax; for (uint256 i = 0; i < addresses.length; i++) { _lgeWhitelistRounds[index].addresses[addresses[i]] = enabled; } } /* * getLGEWhitelistRound * * returns: * * 1. whitelist round number ( 0 = no active round now ) * 2. duration, in seconds, current whitelist round is active for * 3. timestamp current whitelist round closes at * 4. maximum amount a whitelister can purchase in this round * 5. is caller whitelisted * 6. how much caller has purchased in current whitelist round * */ function getLGEWhitelistRound() public view returns (uint256, uint256, uint256, uint256, bool, uint256) { if(_lgeTimestamp > 0) { uint256 wlCloseTimestampLast = _lgeTimestamp; for (uint256 i = 0; i < _lgeWhitelistRounds.length; i++) { WhitelistRound storage wlRound = _lgeWhitelistRounds[i]; wlCloseTimestampLast = wlCloseTimestampLast.add(wlRound.duration); if(now <= wlCloseTimestampLast) return (i.add(1), wlRound.duration, wlCloseTimestampLast, wlRound.amountMax, wlRound.addresses[_msgSender()], wlRound.purchased[_msgSender()]); } } return (0, 0, 0, 0, false, 0); } /* * _applyLGEWhitelist - internal function to be called initially before any transfers * */ function _applyLGEWhitelist(address sender, address recipient, uint256 amount) internal { if(_lgePairAddress == address(0) || _lgeWhitelistRounds.length == 0) return; if(_lgeTimestamp == 0 && sender != _lgePairAddress && recipient == _lgePairAddress && amount > 0) _lgeTimestamp = now; if(sender == _lgePairAddress && recipient != _lgePairAddress) { //buying (uint256 wlRoundNumber,,,,,) = getLGEWhitelistRound(); if(wlRoundNumber > 0) { WhitelistRound storage wlRound = _lgeWhitelistRounds[wlRoundNumber.sub(1)]; require(wlRound.addresses[recipient], "LGE - Buyer is not whitelisted"); uint256 amountRemaining = 0; if(wlRound.purchased[recipient] < wlRound.amountMax) amountRemaining = wlRound.amountMax.sub(wlRound.purchased[recipient]); require(amount <= amountRemaining, "LGE - Amount exceeds whitelist maximum"); wlRound.purchased[recipient] = wlRound.purchased[recipient].add(amount); } } } } // SPDX-License-Identifier: MIT contract AIPAD is IERC20, OwnableUpgradeSafe, LGEWhitelisted { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.AddressSet; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _cap; string private _name; string private _symbol; uint8 private _decimals; mapping(address => bool) public _feeExcluded; uint256 public _feeBurnPct; uint256 public _feeRewardPct; address public _feeRewardAddress; mapping(address => bool) public _pair; address public _router; address[] public _feeRewardSwapPath; mapping(address => bool) private _excluded; EnumerableSet.AddressSet _holders; uint256 public _holderMinBalance; EnumerableSet.AddressSet _burners; uint256 public _burnerMinBalance; mapping (address => uint256) private _balancesBurnt; function initialize(uint256 feeBurnPct, uint256 feeRewardPct, address feeRewardAddress, address router) public initializer { _name = "AIPAD.tech"; _symbol = "AIPAD"; _decimals = 18; _cap = 200000000e18; __Ownable_init(); __LGEWhitelisted_init(); _holderMinBalance = 5e18; _burnerMinBalance = 5e18; IUniswapV2Router02 r = IUniswapV2Router02(router); IUniswapV2Factory f = IUniswapV2Factory(r.factory()); setPair(f.createPair(address(this), r.WETH()), true); address[] memory feeRewardSwapPath = new address[](2); feeRewardSwapPath[0] = address(this); feeRewardSwapPath[1] = r.WETH(); setFees(feeBurnPct, feeRewardPct, feeRewardSwapPath, feeRewardAddress); _router = router; setFeeExcluded(_msgSender(), true); setFeeExcluded(address(this), true); } function setHolderMinBalance(uint256 minBalance) external onlyOwner { require(minBalance > _holderMinBalance, "New minimum amount must be greater than current"); _holderMinBalance = minBalance; } function setBurnerMinBalance(uint256 minBalance) external onlyOwner { require(minBalance > _burnerMinBalance, "New minimum amount must be greater than current"); _burnerMinBalance = minBalance; } function setRouter(address r) public onlyOwner { _router = r; } function setExcluded(address[] calldata addresses, bool enabled) public onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _excluded[addresses[i]] = enabled; } } function setFees(uint256 feeBurnPct, uint256 feeRewardPct, address[] memory feeRewardSwapPath, address feeRewardAddress) public onlyOwner { require(feeBurnPct.add(feeRewardPct) <= 2500, "Fees must not total more than 100%"); require(feeRewardSwapPath.length > 1, "Invalid path"); require(feeRewardAddress != address(0), "Fee reward address must not be zero address"); _feeBurnPct = feeBurnPct; _feeRewardPct = feeRewardPct; _feeRewardSwapPath = feeRewardSwapPath; _feeRewardAddress = feeRewardAddress; } function setPair(address a, bool pair) public onlyOwner { _pair[a] = pair; } function setFeeExcluded(address a, bool excluded) public onlyOwner { _feeExcluded[a] = excluded; } function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } 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); _afterTokenTransfer(address(0), account, amount); emit Transfer(address(0), account, amount); } function burn(uint256 amount) external { _cap=_cap.sub(amount); _burn(_msgSender(), amount); } 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); _balancesBurnt[account] = _balancesBurnt[account].add(amount); if(_balancesBurnt[account] >= _burnerMinBalance) _burners.add(account); else _burners.remove(account); _afterTokenTransfer(account, address(0), amount); emit Transfer(account, address(0), amount); } function burners() public view returns (uint256) { return _burners.length(); } function balanceOfBurners(uint256 startIndex, uint256 count) public view returns (address[] memory, uint256[] memory) { address[] memory addressList; uint256[] memory balanceList; if(_burners.length() > 0 && startIndex < _burners.length()) { if(_burners.length().sub(startIndex) < count) count = _burners.length().sub(startIndex); addressList = new address[](count); balanceList = new uint256[](count); for (uint256 i = 0; i < count; i++) { addressList[i] = _burners.at(startIndex.add(i)); balanceList[i] = _balancesBurnt[addressList[i]]; } } return (addressList,balanceList); } function holders() public view returns (uint256) { return _holders.length(); } function balanceOfHolders(uint256 startIndex, uint256 count) public view returns (address[] memory, uint256[] memory) { address[] memory addressList; uint256[] memory balanceList; if(_holders.length() > 0 && startIndex < _holders.length()) { if(_holders.length().sub(startIndex) < count) count = _holders.length().sub(startIndex); addressList = new address[](count); balanceList = new uint256[](count); for (uint256 i = 0; i < count; i++) { addressList[i] = _holders.at(startIndex.add(i)); balanceList[i] = balanceOf(addressList[i]); } } return (addressList,balanceList); } function _beforeTokenTransfer(address sender, address recipient, uint256 amount) internal { LGEWhitelisted._applyLGEWhitelist(sender, recipient, amount); if (sender == address(0)) { // When minting tokens require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded"); } } function _afterTokenTransfer(address sender, address recipient, uint256 amount) internal { if(_balances[sender] >= _holderMinBalance) _holders.add(sender); else _holders.remove(sender); if(_balances[recipient] >= _holderMinBalance) _holders.add(recipient); else _holders.remove(recipient); } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(!(_excluded[sender] || _excluded[recipient]), "ERC20: transfer excluded"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); if(_pair[recipient] && !_feeExcluded[sender]) { uint256 feeBurnAmount = 0; if(_feeBurnPct > 0) { feeBurnAmount = amount.mul(_feeBurnPct).div(10000); _cap = _cap.sub(feeBurnAmount); _totalSupply = _totalSupply.sub(feeBurnAmount); emit Transfer(sender, address(0), feeBurnAmount); } uint256 feeRewardAmount = 0; if(_feeRewardPct > 0 && _feeRewardAddress != address(0)) { feeRewardAmount = amount.mul(_feeRewardPct).div(10000); if(_router != address(0)) { _balances[address(this)] = _balances[address(this)].add(feeRewardAmount); emit Transfer(sender, address(this), feeRewardAmount); IUniswapV2Router02 r = IUniswapV2Router02(_router); _approve(address(this), _router, feeRewardAmount); r.swapExactTokensForTokensSupportingFeeOnTransferTokens( feeRewardAmount, 0, _feeRewardSwapPath, _feeRewardAddress, block.timestamp ); } else { _balances[_feeRewardAddress] = _balances[_feeRewardAddress].add(feeRewardAmount); emit Transfer(sender, _feeRewardAddress, feeRewardAmount); } } amount = amount.sub(feeBurnAmount).sub(feeRewardAmount); } _balances[recipient] = _balances[recipient].add(amount); _afterTokenTransfer(sender, recipient, amount); emit Transfer(sender, recipient, amount); } function name() public view override returns (string memory) { return _name; } function symbol() public view override returns (string memory) { return _symbol; } function cap() public view returns (uint256) { return _cap; } function decimals() public view override returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function balanceBurntOf(address account) public view returns (uint256) { return _balancesBurnt[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } 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; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _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); } function rescueFunds(address tokenToRescue, address to, uint256 amount) external onlyOwner returns (bool) { return IERC20(tokenToRescue).transfer(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousWhitelister","type":"address"},{"indexed":true,"internalType":"address","name":"newWhitelister","type":"address"}],"name":"WhitelisterTransferred","type":"event"},{"inputs":[],"name":"_burnerMinBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeBurnPct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRewardAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRewardPct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_feeRewardSwapPath","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_holderMinBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lgePairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lgeTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_lgeWhitelistRounds","outputs":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amountMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceBurntOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startIndex","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"balanceOfBurners","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startIndex","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"balanceOfHolders","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"},{"internalType":"uint256[]","name":"durations","type":"uint256[]"},{"internalType":"uint256[]","name":"amountsMax","type":"uint256[]"}],"name":"createLGEWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLGEWhitelistRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"feeBurnPct","type":"uint256"},{"internalType":"uint256","name":"feeRewardPct","type":"uint256"},{"internalType":"address","name":"feeRewardAddress","type":"address"},{"internalType":"address","name":"router","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"amountMax","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"modifyLGEWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWhitelister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenToRescue","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueFunds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minBalance","type":"uint256"}],"name":"setBurnerMinBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setFeeExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeBurnPct","type":"uint256"},{"internalType":"uint256","name":"feeRewardPct","type":"uint256"},{"internalType":"address[]","name":"feeRewardSwapPath","type":"address[]"},{"internalType":"address","name":"feeRewardAddress","type":"address"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minBalance","type":"uint256"}],"name":"setHolderMinBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"pair","type":"bool"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"r","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"newWhitelister","type":"address"}],"name":"transferWhitelister","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50613bb5806100206000396000f3fe608060405234801561001057600080fd5b50600436106102ba5760003560e01c806370a0823111610182578063ad92db33116100e9578063dd62ed3e116100a2578063edae876f1161007c578063edae876f14610b3d578063f2fde38b14610b45578063fb369ca614610b6b578063ffc877d814610b73576102ba565b8063dd62ed3e14610a31578063e3f4f30c14610a5f578063eba116d814610b17576102ba565b8063ad92db33146109a2578063c0d78655146109c5578063c9f1f47f146109eb578063d2fcb94214610a19578063d5215d1114610a21578063da91b76e14610a29576102ba565b80638da5cb5b1161013b5780638da5cb5b146108fc57806395d89b41146109045780639ad3a7ba1461090c578063a457c2d714610914578063a77cac7a14610940578063a9059cbb14610976576102ba565b806370a082311461086a57806371088c6d14610890578063715018a6146108b6578063771a0b28146108be5780638188f71c146108c657806386a22eff146108ce576102ba565b8063355274ea1161022657806349448898116101df5780634944889814610700578063532f1fed146107245780635fa7ace6146107f257806363c6b3d71461080f578063688a09421461082c5780636ccae05414610834576102ba565b8063355274ea146105e357806339509351146105eb5780633ca201961461061757806340c10f191461063457806342966c681461066057806344ade3c51461067d576102ba565b80631b29b0cd116102785780631b29b0cd1461044a578063235303151461048757806323b872dd146104ad5780632e15e5c7146104e357806330da0e0814610509578063313ce567146105c5576102ba565b8062b7ff76146102bf578063019e2729146102d957806306fdde031461031557806307c4357314610392578063095ea7b31461040257806318160ddd14610442575b600080fd5b6102c7610b7b565b60408051918252519081900360200190f35b610313600480360360808110156102ef57600080fd5b508035906020810135906001600160a01b0360408201358116916060013516610b8c565b005b61031d610f72565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035757818101518382015260200161033f565b50505050905090810190601f1680156103845780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610313600480360360408110156103a857600080fd5b810190602081018135600160201b8111156103c257600080fd5b8201836020820111156103d457600080fd5b803590602001918460208302840111600160201b831117156103f557600080fd5b9193509150351515611008565b61042e6004803603604081101561041857600080fd5b506001600160a01b0381351690602001356110bb565b604080519115158252519081900360200190f35b6102c76110d9565b6104526110df565b6040805196875260208701959095528585019390935260608501919091521515608084015260a0830152519081900360c00190f35b6102c76004803603602081101561049d57600080fd5b50356001600160a01b03166111ed565b61042e600480360360608110156104c357600080fd5b506001600160a01b03813581169160208101359091169060400135611208565b610313600480360360208110156104f957600080fd5b50356001600160a01b031661128f565b61052c6004803603604081101561051f57600080fd5b50803590602001356112f3565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610570578181015183820152602001610558565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156105af578181015183820152602001610597565b5050505090500194505050505060405180910390f35b6105cd611467565b6040805160ff9092168252519081900360200190f35b6102c7611470565b61042e6004803603604081101561060157600080fd5b506001600160a01b038135169060200135611476565b6103136004803603602081101561062d57600080fd5b50356114c4565b6103136004803603604081101561064a57600080fd5b506001600160a01b038135169060200135611561565b6103136004803603602081101561067657600080fd5b50356115c7565b610313600480360360a081101561069357600080fd5b81359160208101359160408201359190810190608081016060820135600160201b8111156106c057600080fd5b8201836020820111156106d257600080fd5b803590602001918460208302840111600160201b831117156106f357600080fd5b91935091503515156115e8565b6107086117d7565b604080516001600160a01b039092168252519081900360200190f35b6103136004803603606081101561073a57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561076457600080fd5b82018360208201111561077657600080fd5b803590602001918460208302840111600160201b8311171561079757600080fd5b919390929091602081019035600160201b8111156107b457600080fd5b8201836020820111156107c657600080fd5b803590602001918460208302840111600160201b831117156107e757600080fd5b5090925090506117e6565b6103136004803603602081101561080857600080fd5b5035611935565b6107086004803603602081101561082557600080fd5b50356119d2565b6102c76119f9565b61042e6004803603606081101561084a57600080fd5b506001600160a01b038135811691602081013590911690604001356119ff565b6102c76004803603602081101561088057600080fd5b50356001600160a01b0316611ae4565b61042e600480360360208110156108a657600080fd5b50356001600160a01b0316611aff565b610313611b14565b6102c7611bb6565b6102c7611bbc565b610313600480360360408110156108e457600080fd5b506001600160a01b0381351690602001351515611bc8565b610708611c4b565b61031d611c5a565b610313611cbb565b61042e6004803603604081101561092a57600080fd5b506001600160a01b038135169060200135611d5d565b61095d6004803603602081101561095657600080fd5b5035611dc5565b6040805192835260208301919091528051918290030190f35b61042e6004803603604081101561098c57600080fd5b506001600160a01b038135169060200135611df0565b61052c600480360360408110156109b857600080fd5b5080359060200135611e04565b610313600480360360208110156109db57600080fd5b50356001600160a01b0316611f82565b61031360048036036040811015610a0157600080fd5b506001600160a01b0381351690602001351515611ffc565b6102c761207f565b610708612085565b6102c7612094565b6102c760048036036040811015610a4757600080fd5b506001600160a01b038135811691602001351661209a565b61031360048036036080811015610a7557600080fd5b813591602081013591810190606081016040820135600160201b811115610a9b57600080fd5b820183602082011115610aad57600080fd5b803590602001918460208302840111600160201b83111715610ace57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550505090356001600160a01b031691506120c59050565b61042e60048036036020811015610b2d57600080fd5b50356001600160a01b0316612234565b610708612249565b61031360048036036020811015610b5b57600080fd5b50356001600160a01b0316612258565b6102c7612351565b610708612357565b6000610b8760ad612366565b905090565b600054610100900460ff1680610ba55750610ba5612371565b80610bb3575060005460ff16155b610bee5760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff16158015610c19576000805460ff1961ff0019909116610100171660011790555b60408051808201909152600a8082526908292a082885ce8cac6d60b31b6020909201918252610c4a91609f91613730565b5060408051808201909152600580825264105254105160da1b6020909201918252610c779160a091613730565b5060a1805460ff191660121790556aa56fa5b99019a5c8000000609e55610c9c612377565b610ca4612428565b674563918244f4000060ac81905550674563918244f4000060af8190555060008290506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610d0257600080fd5b505afa158015610d16573d6000803e3d6000fd5b505050506040513d6020811015610d2c57600080fd5b5051604080516315ab88c960e31b81529051919250610e30916001600160a01b038085169263c9c6539692309288169163ad5c4648916004808301926020929190829003018186803b158015610d8157600080fd5b505afa158015610d95573d6000803e3d6000fd5b505050506040513d6020811015610dab57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015610dfd57600080fd5b505af1158015610e11573d6000803e3d6000fd5b505050506040513d6020811015610e2757600080fd5b50516001611bc8565b60408051600280825260608083018452926020830190803683370190505090503081600081518110610e5e57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050826001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610eb757600080fd5b505afa158015610ecb573d6000803e3d6000fd5b505050506040513d6020811015610ee157600080fd5b5051815182906001908110610ef257fe5b60200260200101906001600160a01b031690816001600160a01b031681525050610f1e888883896120c5565b60a780546001600160a01b0319166001600160a01b038716179055610f4b610f446124c5565b6001611ffc565b610f56306001611ffc565b5050508015610f6b576000805461ff00191690555b5050505050565b609f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffe5780601f10610fd357610100808354040283529160200191610ffe565b820191906000526020600020905b815481529060010190602001808311610fe157829003601f168201915b5050505050905090565b6110106124c5565b6065546001600160a01b03908116911614611060576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b60005b828110156110b5578160a9600086868581811061107c57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611063565b50505050565b60006110cf6110c86124c5565b84846124c9565b5060015b92915050565b609d5490565b600080600080600080600060985411156111d25760985460005b6097548110156111cf5760006097828154811061111257fe5b906000526020600020906004020190506111398160000154846125b590919063ffffffff16565b92508242116111c65761114d8260016125b5565b8154600183015485906002850160006111646124c5565b6001600160a01b03168152602081019190915260400160009081205460ff169060038701906111916124c5565b6001600160a01b03166001600160a01b03168152602001908152602001600020549850985098509850985098505050506111e5565b506001016110f9565b50505b5060009450849350839250829150819050805b909192939495565b6001600160a01b0316600090815260b0602052604090205490565b6000611215848484612616565b611285846112216124c5565b61128085604051806060016040528060288152602001613a16602891396001600160a01b038a166000908152609c602052604081209061125f6124c5565b6001600160a01b031681526020810191909152604001600020549190612b0d565b6124c9565b5060019392505050565b6112976124c5565b609a546001600160a01b039081169116146112e7576040805162461bcd60e51b815260206004820152601d6024820152600080516020613980833981519152604482015290519081900360640190fd5b6112f081612ba4565b50565b606080606080600061130560aa612366565b11801561131a575061131760aa612366565b86105b1561145c57846113348761132e60aa612366565b90612c45565b101561134b576113488661132e60aa612366565b94505b8467ffffffffffffffff8111801561136257600080fd5b5060405190808252806020026020018201604052801561138c578160200160208202803683370190505b5091508467ffffffffffffffff811180156113a657600080fd5b506040519080825280602002602001820160405280156113d0578160200160208202803683370190505b50905060005b8581101561145a576113f36113eb88836125b5565b60aa90612c87565b8382815181106113ff57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061143b83828151811061142e57fe5b6020026020010151611ae4565b82828151811061144757fe5b60209081029190910101526001016113d6565b505b909590945092505050565b60a15460ff1690565b609e5490565b60006110cf6114836124c5565b8461128085609c60006114946124c5565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906125b5565b6114cc6124c5565b6065546001600160a01b0390811691161461151c576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b60ac54811161155c5760405162461bcd60e51b815260040180806020018281038252602f8152602001806139a0602f913960400191505060405180910390fd5b60ac55565b6115696124c5565b6065546001600160a01b039081169116146115b9576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6115c38282612c93565b5050565b609e546115d49082612c45565b609e556112f06115e26124c5565b82612d87565b6115f06124c5565b609a546001600160a01b03908116911614611640576040805162461bcd60e51b815260206004820152601d6024820152600080516020613980833981519152604482015290519081900360640190fd5b6097548610611686576040805162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b604482015290519081900360640190fd5b600084116116cf576040805162461bcd60e51b8152602060048201526011602482015270092dcecc2d8d2c840c2dadeeadce89ac2f607b1b604482015290519081900360640190fd5b609786815481106116dc57fe5b906000526020600020906004020160000154851461171457846097878154811061170257fe5b60009182526020909120600490910201555b6097868154811061172157fe5b906000526020600020906004020160010154841461175d57836097878154811061174757fe5b9060005260206000209060040201600101819055505b60005b828110156117ce57816097888154811061177657fe5b9060005260206000209060040201600201600086868581811061179557fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611760565b50505050505050565b6099546001600160a01b031681565b6117ee6124c5565b609a546001600160a01b0390811691161461183e576040805162461bcd60e51b815260206004820152601d6024820152600080516020613980833981519152604482015290519081900360640190fd5b828114611889576040805162461bcd60e51b8152602060048201526014602482015273496e76616c69642077686974656c69737428732960601b604482015290519081900360640190fd5b609980546001600160a01b0319166001600160a01b0387161790558215610f6b576118b6609760006137ae565b60005b8381101561192d57609760405180604001604052808787858181106118da57fe5b9050602002013581526020018585858181106118f257fe5b6020908102929092013590925283546001818101865560009586529482902084516004909202019081559201519183019190915550016118b9565b505050505050565b61193d6124c5565b6065546001600160a01b0390811691161461198d576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b60af5481116119cd5760405162461bcd60e51b815260040180806020018281038252602f8152602001806139a0602f913960400191505060405180910390fd5b60af55565b60a881815481106119df57fe5b6000918252602090912001546001600160a01b0316905081565b60a45481565b6000611a096124c5565b6065546001600160a01b03908116911614611a59576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b836001600160a01b031663a9059cbb84846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611ab057600080fd5b505af1158015611ac4573d6000803e3d6000fd5b505050506040513d6020811015611ada57600080fd5b5051949350505050565b6001600160a01b03166000908152609b602052604090205490565b60a26020526000908152604090205460ff1681565b611b1c6124c5565b6065546001600160a01b03908116911614611b6c576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6065546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3606580546001600160a01b0319169055565b60a35481565b6000610b8760aa612366565b611bd06124c5565b6065546001600160a01b03908116911614611c20576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6001600160a01b0391909116600090815260a660205260409020805460ff1916911515919091179055565b6065546001600160a01b031690565b60a08054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffe5780601f10610fd357610100808354040283529160200191610ffe565b611cc36124c5565b609a546001600160a01b03908116911614611d13576040805162461bcd60e51b815260206004820152601d6024820152600080516020613980833981519152604482015290519081900360640190fd5b609a546040516000916001600160a01b0316907f4e78506f3260e366dc9440ee0b4eca2d03aa91536b7605deb90e873d3fc4e5b4908390a3609a80546001600160a01b0319169055565b60006110cf611d6a6124c5565b8461128085604051806060016040528060258152602001613b5b60259139609c6000611d946124c5565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612b0d565b60978181548110611dd257fe5b60009182526020909120600490910201805460019091015490915082565b60006110cf611dfd6124c5565b8484612616565b6060806060806000611e1660ad612366565b118015611e2b5750611e2860ad612366565b86105b1561145c5784611e3f8761132e60ad612366565b1015611e5657611e538661132e60ad612366565b94505b8467ffffffffffffffff81118015611e6d57600080fd5b50604051908082528060200260200182016040528015611e97578160200160208202803683370190505b5091508467ffffffffffffffff81118015611eb157600080fd5b50604051908082528060200260200182016040528015611edb578160200160208202803683370190505b50905060005b8581101561145a57611efe611ef688836125b5565b60ad90612c87565b838281518110611f0a57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505060b06000848381518110611f3a57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054828281518110611f6f57fe5b6020908102919091010152600101611ee1565b611f8a6124c5565b6065546001600160a01b03908116911614611fda576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b60a780546001600160a01b0319166001600160a01b0392909216919091179055565b6120046124c5565b6065546001600160a01b03908116911614612054576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6001600160a01b0391909116600090815260a260205260409020805460ff1916911515919091179055565b60af5481565b609a546001600160a01b031681565b60985481565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205490565b6120cd6124c5565b6065546001600160a01b0390811691161461211d576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6109c461212a85856125b5565b11156121675760405162461bcd60e51b8152600401808060200182810382526022815260200180613b396022913960400191505060405180910390fd5b60018251116121ac576040805162461bcd60e51b815260206004820152600c60248201526b092dcecc2d8d2c840e0c2e8d60a31b604482015290519081900360640190fd5b6001600160a01b0381166121f15760405162461bcd60e51b815260040180806020018281038252602b81526020018061392f602b913960400191505060405180910390fd5b60a384905560a4839055815161220e9060a89060208501906137cf565b5060a580546001600160a01b0319166001600160a01b0392909216919091179055505050565b60a66020526000908152604090205460ff1681565b60a7546001600160a01b031681565b6122606124c5565b6065546001600160a01b039081169116146122b0576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6001600160a01b0381166122f55760405162461bcd60e51b81526004018080602001828103825260268152602001806138e76026913960400191505060405180910390fd5b6065546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b60ac5481565b60a5546001600160a01b031681565b60006110d382612ee1565b303b1590565b600054610100900460ff16806123905750612390612371565b8061239e575060005460ff16155b6123d95760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff16158015612404576000805460ff1961ff0019909116610100171660011790555b61240c612ee5565b612414612f85565b80156112f0576000805461ff001916905550565b600054610100900460ff16806124415750612441612371565b8061244f575060005460ff16155b61248a5760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff161580156124b5576000805460ff1961ff0019909116610100171660011790555b6124bd612ee5565b61241461307e565b3390565b6001600160a01b03831661250e5760405162461bcd60e51b8152600401808060200182810382526024815260200180613b156024913960400191505060405180910390fd5b6001600160a01b0382166125535760405162461bcd60e51b815260040180806020018281038252602281526020018061390d6022913960400191505060405180910390fd5b6001600160a01b038084166000818152609c6020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008282018381101561260f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03831661265b5760405162461bcd60e51b8152600401808060200182810382526025815260200180613acd6025913960400191505060405180910390fd5b6001600160a01b0382166126a05760405162461bcd60e51b81526004018080602001828103825260238152602001806138a26023913960400191505060405180910390fd5b6001600160a01b038316600090815260a9602052604090205460ff16806126df57506001600160a01b038216600090815260a9602052604090205460ff165b15612731576040805162461bcd60e51b815260206004820152601860248201527f45524332303a207472616e73666572206578636c756465640000000000000000604482015290519081900360640190fd5b61273c838383613147565b6127798160405180606001604052806026815260200161395a602691396001600160a01b0386166000908152609b60205260409020549190612b0d565b6001600160a01b038085166000908152609b6020908152604080832094909455918516815260a6909152205460ff1680156127cd57506001600160a01b038316600090815260a2602052604090205460ff16155b15612a885760a35460009015612851576127fe6127106127f860a354856131cd90919063ffffffff16565b90613226565b609e5490915061280e9082612c45565b609e55609d5461281e9082612c45565b609d556040805182815290516000916001600160a01b03871691600080516020613a8c8339815191529181900360200190a35b60008060a45411801561286e575060a5546001600160a01b031615155b15612a755761288e6127106127f860a454866131cd90919063ffffffff16565b60a7549091506001600160a01b031615612a0257306000908152609b60205260409020546128bc90826125b5565b306000818152609b6020908152604091829020939093558051848152905191926001600160a01b03891692600080516020613a8c8339815191529281900390910190a360a7546001600160a01b03166129163082846124c9565b806001600160a01b0316635c11d79583600060a860a560009054906101000a90046001600160a01b0316426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156129c057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116129a2575b50509650505050505050600060405180830381600087803b1580156129e457600080fd5b505af11580156129f8573d6000803e3d6000fd5b5050505050612a75565b60a5546001600160a01b03166000908152609b6020526040902054612a2790826125b5565b60a580546001600160a01b039081166000908152609b6020908152604091829020949094559154825185815292519082169391891692600080516020613a8c83398151915292908290030190a35b612a838161132e8585612c45565b925050505b6001600160a01b0382166000908152609b6020526040902054612aab90826125b5565b6001600160a01b0383166000908152609b6020526040902055612acf838383613268565b816001600160a01b0316836001600160a01b0316600080516020613a8c833981519152836040518082815260200191505060405180910390a3505050565b60008184841115612b9c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b61578181015183820152602001612b49565b50505050905090810190601f168015612b8e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038116612be95760405162461bcd60e51b8152600401808060200182810382526023815260200180613af26023913960400191505060405180910390fd5b609a546040516001600160a01b038084169216907f4e78506f3260e366dc9440ee0b4eca2d03aa91536b7605deb90e873d3fc4e5b490600090a3609a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061260f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612b0d565b600061260f83836132e4565b6001600160a01b038216612cee576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612cfa60008383613147565b609d54612d0790826125b5565b609d556001600160a01b0382166000908152609b6020526040902054612d2d90826125b5565b6001600160a01b0383166000908152609b6020526040812091909155612d54908383613268565b6040805182815290516001600160a01b03841691600091600080516020613a8c8339815191529181900360200190a35050565b6001600160a01b038216612dcc5760405162461bcd60e51b8152600401808060200182810382526021815260200180613aac6021913960400191505060405180910390fd5b612dd882600083613147565b612e15816040518060600160405280602281526020016138c5602291396001600160a01b0385166000908152609b60205260409020549190612b0d565b6001600160a01b0383166000908152609b6020526040902055609d54612e3b9082612c45565b609d556001600160a01b038216600090815260b06020526040902054612e6190826125b5565b6001600160a01b038316600090815260b06020526040902081905560af5411612e9557612e8f60ad83613348565b50612ea2565b612ea060ad8361335d565b505b612eae82600083613268565b6040805182815290516000916001600160a01b03851691600080516020613a8c8339815191529181900360200190a35050565b5490565b600054610100900460ff1680612efe5750612efe612371565b80612f0c575060005460ff16155b612f475760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff16158015612414576000805460ff1961ff00199091166101001716600117905580156112f0576000805461ff001916905550565b600054610100900460ff1680612f9e5750612f9e612371565b80612fac575060005460ff16155b612fe75760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff16158015613012576000805460ff1961ff0019909116610100171660011790555b600061301c6124c5565b606580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35080156112f0576000805461ff001916905550565b600054610100900460ff16806130975750613097612371565b806130a5575060005460ff16155b6130e05760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff1615801561310b576000805460ff1961ff0019909116610100171660011790555b6131136124c5565b609a80546001600160a01b0319166001600160a01b039290921691909117905580156112f0576000805461ff001916905550565b613152838383613372565b6001600160a01b0383166131c857609e546131758261316f6110d9565b906125b5565b11156131c8576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b505050565b6000826131dc575060006110d3565b828202828482816131e957fe5b041461260f5760405162461bcd60e51b81526004018080602001828103825260218152602001806139f56021913960400191505060405180910390fd5b600061260f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135a3565b60ac546001600160a01b0384166000908152609b60205260409020541061329a5761329460aa84613348565b506132a7565b6132a560aa8461335d565b505b60ac546001600160a01b0383166000908152609b6020526040902054106132d9576132d360aa83613348565b506131c8565b6110b560aa8361335d565b815460009082106133265760405162461bcd60e51b81526004018080602001828103825260228152602001806138806022913960400191505060405180910390fd5b82600001828154811061333557fe5b9060005260206000200154905092915050565b600061260f836001600160a01b038416613608565b600061260f836001600160a01b038416613652565b6099546001600160a01b0316158061338a5750609754155b15613394576131c8565b6098541580156133b257506099546001600160a01b03848116911614155b80156133cb57506099546001600160a01b038381169116145b80156133d75750600081115b156133e157426098555b6099546001600160a01b03848116911614801561340c57506099546001600160a01b03838116911614155b156131c857600061341b6110df565b5050505050905060008111156110b5576000609761343a836001612c45565b8154811061344457fe5b600091825260208083206001600160a01b03881684526002600490930201918201905260409091205490915060ff166134c4576040805162461bcd60e51b815260206004820152601e60248201527f4c4745202d204275796572206973206e6f742077686974656c69737465640000604482015290519081900360640190fd5b60018101546001600160a01b038516600090815260038301602052604081205490911115613518576001600160a01b0385166000908152600383016020526040902054600183015461351591612c45565b90505b808411156135575760405162461bcd60e51b81526004018080602001828103825260268152602001806139cf6026913960400191505060405180910390fd5b6001600160a01b038516600090815260038301602052604090205461357c90856125b5565b6001600160a01b038616600090815260039093016020526040909220919091555050505050565b600081836135f25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612b61578181015183820152602001612b49565b5060008385816135fe57fe5b0495945050505050565b60006136148383613718565b61364a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110d3565b5060006110d3565b6000818152600183016020526040812054801561370e578354600019808301919081019060009087908390811061368557fe5b90600052602060002001549050808760000184815481106136a257fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806136d257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110d3565b60009150506110d3565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061377157805160ff191683800117855561379e565b8280016001018555821561379e579182015b8281111561379e578251825591602001919060010190613783565b506137aa929150613830565b5090565b50805460008255600402906000526020600020908101906112f09190613845565b828054828255906000526020600020908101928215613824579160200282015b8281111561382457825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906137ef565b506137aa929150613860565b5b808211156137aa5760008155600101613831565b5b808211156137aa5760008082556001820155600401613846565b5b808211156137aa5780546001600160a01b031916815560010161386156fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373466565207265776172642061646472657373206d757374206e6f74206265207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543616c6c6572206973206e6f74207468652077686974656c69737465720000004e6577206d696e696d756d20616d6f756e74206d7573742062652067726561746572207468616e2063757272656e744c4745202d20416d6f756e7420657863656564732077686974656c697374206d6178696d756d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734e65772077686974656c697374657220697320746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737346656573206d757374206e6f7420746f74616c206d6f7265207468616e203130302545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220958217139cfd90d39258b07eae74b9886792dcc56e3b4d48f66d649e07499c5464736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102ba5760003560e01c806370a0823111610182578063ad92db33116100e9578063dd62ed3e116100a2578063edae876f1161007c578063edae876f14610b3d578063f2fde38b14610b45578063fb369ca614610b6b578063ffc877d814610b73576102ba565b8063dd62ed3e14610a31578063e3f4f30c14610a5f578063eba116d814610b17576102ba565b8063ad92db33146109a2578063c0d78655146109c5578063c9f1f47f146109eb578063d2fcb94214610a19578063d5215d1114610a21578063da91b76e14610a29576102ba565b80638da5cb5b1161013b5780638da5cb5b146108fc57806395d89b41146109045780639ad3a7ba1461090c578063a457c2d714610914578063a77cac7a14610940578063a9059cbb14610976576102ba565b806370a082311461086a57806371088c6d14610890578063715018a6146108b6578063771a0b28146108be5780638188f71c146108c657806386a22eff146108ce576102ba565b8063355274ea1161022657806349448898116101df5780634944889814610700578063532f1fed146107245780635fa7ace6146107f257806363c6b3d71461080f578063688a09421461082c5780636ccae05414610834576102ba565b8063355274ea146105e357806339509351146105eb5780633ca201961461061757806340c10f191461063457806342966c681461066057806344ade3c51461067d576102ba565b80631b29b0cd116102785780631b29b0cd1461044a578063235303151461048757806323b872dd146104ad5780632e15e5c7146104e357806330da0e0814610509578063313ce567146105c5576102ba565b8062b7ff76146102bf578063019e2729146102d957806306fdde031461031557806307c4357314610392578063095ea7b31461040257806318160ddd14610442575b600080fd5b6102c7610b7b565b60408051918252519081900360200190f35b610313600480360360808110156102ef57600080fd5b508035906020810135906001600160a01b0360408201358116916060013516610b8c565b005b61031d610f72565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561035757818101518382015260200161033f565b50505050905090810190601f1680156103845780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610313600480360360408110156103a857600080fd5b810190602081018135600160201b8111156103c257600080fd5b8201836020820111156103d457600080fd5b803590602001918460208302840111600160201b831117156103f557600080fd5b9193509150351515611008565b61042e6004803603604081101561041857600080fd5b506001600160a01b0381351690602001356110bb565b604080519115158252519081900360200190f35b6102c76110d9565b6104526110df565b6040805196875260208701959095528585019390935260608501919091521515608084015260a0830152519081900360c00190f35b6102c76004803603602081101561049d57600080fd5b50356001600160a01b03166111ed565b61042e600480360360608110156104c357600080fd5b506001600160a01b03813581169160208101359091169060400135611208565b610313600480360360208110156104f957600080fd5b50356001600160a01b031661128f565b61052c6004803603604081101561051f57600080fd5b50803590602001356112f3565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610570578181015183820152602001610558565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156105af578181015183820152602001610597565b5050505090500194505050505060405180910390f35b6105cd611467565b6040805160ff9092168252519081900360200190f35b6102c7611470565b61042e6004803603604081101561060157600080fd5b506001600160a01b038135169060200135611476565b6103136004803603602081101561062d57600080fd5b50356114c4565b6103136004803603604081101561064a57600080fd5b506001600160a01b038135169060200135611561565b6103136004803603602081101561067657600080fd5b50356115c7565b610313600480360360a081101561069357600080fd5b81359160208101359160408201359190810190608081016060820135600160201b8111156106c057600080fd5b8201836020820111156106d257600080fd5b803590602001918460208302840111600160201b831117156106f357600080fd5b91935091503515156115e8565b6107086117d7565b604080516001600160a01b039092168252519081900360200190f35b6103136004803603606081101561073a57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561076457600080fd5b82018360208201111561077657600080fd5b803590602001918460208302840111600160201b8311171561079757600080fd5b919390929091602081019035600160201b8111156107b457600080fd5b8201836020820111156107c657600080fd5b803590602001918460208302840111600160201b831117156107e757600080fd5b5090925090506117e6565b6103136004803603602081101561080857600080fd5b5035611935565b6107086004803603602081101561082557600080fd5b50356119d2565b6102c76119f9565b61042e6004803603606081101561084a57600080fd5b506001600160a01b038135811691602081013590911690604001356119ff565b6102c76004803603602081101561088057600080fd5b50356001600160a01b0316611ae4565b61042e600480360360208110156108a657600080fd5b50356001600160a01b0316611aff565b610313611b14565b6102c7611bb6565b6102c7611bbc565b610313600480360360408110156108e457600080fd5b506001600160a01b0381351690602001351515611bc8565b610708611c4b565b61031d611c5a565b610313611cbb565b61042e6004803603604081101561092a57600080fd5b506001600160a01b038135169060200135611d5d565b61095d6004803603602081101561095657600080fd5b5035611dc5565b6040805192835260208301919091528051918290030190f35b61042e6004803603604081101561098c57600080fd5b506001600160a01b038135169060200135611df0565b61052c600480360360408110156109b857600080fd5b5080359060200135611e04565b610313600480360360208110156109db57600080fd5b50356001600160a01b0316611f82565b61031360048036036040811015610a0157600080fd5b506001600160a01b0381351690602001351515611ffc565b6102c761207f565b610708612085565b6102c7612094565b6102c760048036036040811015610a4757600080fd5b506001600160a01b038135811691602001351661209a565b61031360048036036080811015610a7557600080fd5b813591602081013591810190606081016040820135600160201b811115610a9b57600080fd5b820183602082011115610aad57600080fd5b803590602001918460208302840111600160201b83111715610ace57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550505090356001600160a01b031691506120c59050565b61042e60048036036020811015610b2d57600080fd5b50356001600160a01b0316612234565b610708612249565b61031360048036036020811015610b5b57600080fd5b50356001600160a01b0316612258565b6102c7612351565b610708612357565b6000610b8760ad612366565b905090565b600054610100900460ff1680610ba55750610ba5612371565b80610bb3575060005460ff16155b610bee5760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff16158015610c19576000805460ff1961ff0019909116610100171660011790555b60408051808201909152600a8082526908292a082885ce8cac6d60b31b6020909201918252610c4a91609f91613730565b5060408051808201909152600580825264105254105160da1b6020909201918252610c779160a091613730565b5060a1805460ff191660121790556aa56fa5b99019a5c8000000609e55610c9c612377565b610ca4612428565b674563918244f4000060ac81905550674563918244f4000060af8190555060008290506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610d0257600080fd5b505afa158015610d16573d6000803e3d6000fd5b505050506040513d6020811015610d2c57600080fd5b5051604080516315ab88c960e31b81529051919250610e30916001600160a01b038085169263c9c6539692309288169163ad5c4648916004808301926020929190829003018186803b158015610d8157600080fd5b505afa158015610d95573d6000803e3d6000fd5b505050506040513d6020811015610dab57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015610dfd57600080fd5b505af1158015610e11573d6000803e3d6000fd5b505050506040513d6020811015610e2757600080fd5b50516001611bc8565b60408051600280825260608083018452926020830190803683370190505090503081600081518110610e5e57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050826001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610eb757600080fd5b505afa158015610ecb573d6000803e3d6000fd5b505050506040513d6020811015610ee157600080fd5b5051815182906001908110610ef257fe5b60200260200101906001600160a01b031690816001600160a01b031681525050610f1e888883896120c5565b60a780546001600160a01b0319166001600160a01b038716179055610f4b610f446124c5565b6001611ffc565b610f56306001611ffc565b5050508015610f6b576000805461ff00191690555b5050505050565b609f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffe5780601f10610fd357610100808354040283529160200191610ffe565b820191906000526020600020905b815481529060010190602001808311610fe157829003601f168201915b5050505050905090565b6110106124c5565b6065546001600160a01b03908116911614611060576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b60005b828110156110b5578160a9600086868581811061107c57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611063565b50505050565b60006110cf6110c86124c5565b84846124c9565b5060015b92915050565b609d5490565b600080600080600080600060985411156111d25760985460005b6097548110156111cf5760006097828154811061111257fe5b906000526020600020906004020190506111398160000154846125b590919063ffffffff16565b92508242116111c65761114d8260016125b5565b8154600183015485906002850160006111646124c5565b6001600160a01b03168152602081019190915260400160009081205460ff169060038701906111916124c5565b6001600160a01b03166001600160a01b03168152602001908152602001600020549850985098509850985098505050506111e5565b506001016110f9565b50505b5060009450849350839250829150819050805b909192939495565b6001600160a01b0316600090815260b0602052604090205490565b6000611215848484612616565b611285846112216124c5565b61128085604051806060016040528060288152602001613a16602891396001600160a01b038a166000908152609c602052604081209061125f6124c5565b6001600160a01b031681526020810191909152604001600020549190612b0d565b6124c9565b5060019392505050565b6112976124c5565b609a546001600160a01b039081169116146112e7576040805162461bcd60e51b815260206004820152601d6024820152600080516020613980833981519152604482015290519081900360640190fd5b6112f081612ba4565b50565b606080606080600061130560aa612366565b11801561131a575061131760aa612366565b86105b1561145c57846113348761132e60aa612366565b90612c45565b101561134b576113488661132e60aa612366565b94505b8467ffffffffffffffff8111801561136257600080fd5b5060405190808252806020026020018201604052801561138c578160200160208202803683370190505b5091508467ffffffffffffffff811180156113a657600080fd5b506040519080825280602002602001820160405280156113d0578160200160208202803683370190505b50905060005b8581101561145a576113f36113eb88836125b5565b60aa90612c87565b8382815181106113ff57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061143b83828151811061142e57fe5b6020026020010151611ae4565b82828151811061144757fe5b60209081029190910101526001016113d6565b505b909590945092505050565b60a15460ff1690565b609e5490565b60006110cf6114836124c5565b8461128085609c60006114946124c5565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906125b5565b6114cc6124c5565b6065546001600160a01b0390811691161461151c576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b60ac54811161155c5760405162461bcd60e51b815260040180806020018281038252602f8152602001806139a0602f913960400191505060405180910390fd5b60ac55565b6115696124c5565b6065546001600160a01b039081169116146115b9576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6115c38282612c93565b5050565b609e546115d49082612c45565b609e556112f06115e26124c5565b82612d87565b6115f06124c5565b609a546001600160a01b03908116911614611640576040805162461bcd60e51b815260206004820152601d6024820152600080516020613980833981519152604482015290519081900360640190fd5b6097548610611686576040805162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b604482015290519081900360640190fd5b600084116116cf576040805162461bcd60e51b8152602060048201526011602482015270092dcecc2d8d2c840c2dadeeadce89ac2f607b1b604482015290519081900360640190fd5b609786815481106116dc57fe5b906000526020600020906004020160000154851461171457846097878154811061170257fe5b60009182526020909120600490910201555b6097868154811061172157fe5b906000526020600020906004020160010154841461175d57836097878154811061174757fe5b9060005260206000209060040201600101819055505b60005b828110156117ce57816097888154811061177657fe5b9060005260206000209060040201600201600086868581811061179557fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611760565b50505050505050565b6099546001600160a01b031681565b6117ee6124c5565b609a546001600160a01b0390811691161461183e576040805162461bcd60e51b815260206004820152601d6024820152600080516020613980833981519152604482015290519081900360640190fd5b828114611889576040805162461bcd60e51b8152602060048201526014602482015273496e76616c69642077686974656c69737428732960601b604482015290519081900360640190fd5b609980546001600160a01b0319166001600160a01b0387161790558215610f6b576118b6609760006137ae565b60005b8381101561192d57609760405180604001604052808787858181106118da57fe5b9050602002013581526020018585858181106118f257fe5b6020908102929092013590925283546001818101865560009586529482902084516004909202019081559201519183019190915550016118b9565b505050505050565b61193d6124c5565b6065546001600160a01b0390811691161461198d576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b60af5481116119cd5760405162461bcd60e51b815260040180806020018281038252602f8152602001806139a0602f913960400191505060405180910390fd5b60af55565b60a881815481106119df57fe5b6000918252602090912001546001600160a01b0316905081565b60a45481565b6000611a096124c5565b6065546001600160a01b03908116911614611a59576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b836001600160a01b031663a9059cbb84846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611ab057600080fd5b505af1158015611ac4573d6000803e3d6000fd5b505050506040513d6020811015611ada57600080fd5b5051949350505050565b6001600160a01b03166000908152609b602052604090205490565b60a26020526000908152604090205460ff1681565b611b1c6124c5565b6065546001600160a01b03908116911614611b6c576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6065546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3606580546001600160a01b0319169055565b60a35481565b6000610b8760aa612366565b611bd06124c5565b6065546001600160a01b03908116911614611c20576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6001600160a01b0391909116600090815260a660205260409020805460ff1916911515919091179055565b6065546001600160a01b031690565b60a08054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffe5780601f10610fd357610100808354040283529160200191610ffe565b611cc36124c5565b609a546001600160a01b03908116911614611d13576040805162461bcd60e51b815260206004820152601d6024820152600080516020613980833981519152604482015290519081900360640190fd5b609a546040516000916001600160a01b0316907f4e78506f3260e366dc9440ee0b4eca2d03aa91536b7605deb90e873d3fc4e5b4908390a3609a80546001600160a01b0319169055565b60006110cf611d6a6124c5565b8461128085604051806060016040528060258152602001613b5b60259139609c6000611d946124c5565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612b0d565b60978181548110611dd257fe5b60009182526020909120600490910201805460019091015490915082565b60006110cf611dfd6124c5565b8484612616565b6060806060806000611e1660ad612366565b118015611e2b5750611e2860ad612366565b86105b1561145c5784611e3f8761132e60ad612366565b1015611e5657611e538661132e60ad612366565b94505b8467ffffffffffffffff81118015611e6d57600080fd5b50604051908082528060200260200182016040528015611e97578160200160208202803683370190505b5091508467ffffffffffffffff81118015611eb157600080fd5b50604051908082528060200260200182016040528015611edb578160200160208202803683370190505b50905060005b8581101561145a57611efe611ef688836125b5565b60ad90612c87565b838281518110611f0a57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505060b06000848381518110611f3a57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054828281518110611f6f57fe5b6020908102919091010152600101611ee1565b611f8a6124c5565b6065546001600160a01b03908116911614611fda576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b60a780546001600160a01b0319166001600160a01b0392909216919091179055565b6120046124c5565b6065546001600160a01b03908116911614612054576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6001600160a01b0391909116600090815260a260205260409020805460ff1916911515919091179055565b60af5481565b609a546001600160a01b031681565b60985481565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205490565b6120cd6124c5565b6065546001600160a01b0390811691161461211d576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6109c461212a85856125b5565b11156121675760405162461bcd60e51b8152600401808060200182810382526022815260200180613b396022913960400191505060405180910390fd5b60018251116121ac576040805162461bcd60e51b815260206004820152600c60248201526b092dcecc2d8d2c840e0c2e8d60a31b604482015290519081900360640190fd5b6001600160a01b0381166121f15760405162461bcd60e51b815260040180806020018281038252602b81526020018061392f602b913960400191505060405180910390fd5b60a384905560a4839055815161220e9060a89060208501906137cf565b5060a580546001600160a01b0319166001600160a01b0392909216919091179055505050565b60a66020526000908152604090205460ff1681565b60a7546001600160a01b031681565b6122606124c5565b6065546001600160a01b039081169116146122b0576040805162461bcd60e51b81526020600482018190526024820152600080516020613a3e833981519152604482015290519081900360640190fd5b6001600160a01b0381166122f55760405162461bcd60e51b81526004018080602001828103825260268152602001806138e76026913960400191505060405180910390fd5b6065546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b60ac5481565b60a5546001600160a01b031681565b60006110d382612ee1565b303b1590565b600054610100900460ff16806123905750612390612371565b8061239e575060005460ff16155b6123d95760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff16158015612404576000805460ff1961ff0019909116610100171660011790555b61240c612ee5565b612414612f85565b80156112f0576000805461ff001916905550565b600054610100900460ff16806124415750612441612371565b8061244f575060005460ff16155b61248a5760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff161580156124b5576000805460ff1961ff0019909116610100171660011790555b6124bd612ee5565b61241461307e565b3390565b6001600160a01b03831661250e5760405162461bcd60e51b8152600401808060200182810382526024815260200180613b156024913960400191505060405180910390fd5b6001600160a01b0382166125535760405162461bcd60e51b815260040180806020018281038252602281526020018061390d6022913960400191505060405180910390fd5b6001600160a01b038084166000818152609c6020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008282018381101561260f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03831661265b5760405162461bcd60e51b8152600401808060200182810382526025815260200180613acd6025913960400191505060405180910390fd5b6001600160a01b0382166126a05760405162461bcd60e51b81526004018080602001828103825260238152602001806138a26023913960400191505060405180910390fd5b6001600160a01b038316600090815260a9602052604090205460ff16806126df57506001600160a01b038216600090815260a9602052604090205460ff165b15612731576040805162461bcd60e51b815260206004820152601860248201527f45524332303a207472616e73666572206578636c756465640000000000000000604482015290519081900360640190fd5b61273c838383613147565b6127798160405180606001604052806026815260200161395a602691396001600160a01b0386166000908152609b60205260409020549190612b0d565b6001600160a01b038085166000908152609b6020908152604080832094909455918516815260a6909152205460ff1680156127cd57506001600160a01b038316600090815260a2602052604090205460ff16155b15612a885760a35460009015612851576127fe6127106127f860a354856131cd90919063ffffffff16565b90613226565b609e5490915061280e9082612c45565b609e55609d5461281e9082612c45565b609d556040805182815290516000916001600160a01b03871691600080516020613a8c8339815191529181900360200190a35b60008060a45411801561286e575060a5546001600160a01b031615155b15612a755761288e6127106127f860a454866131cd90919063ffffffff16565b60a7549091506001600160a01b031615612a0257306000908152609b60205260409020546128bc90826125b5565b306000818152609b6020908152604091829020939093558051848152905191926001600160a01b03891692600080516020613a8c8339815191529281900390910190a360a7546001600160a01b03166129163082846124c9565b806001600160a01b0316635c11d79583600060a860a560009054906101000a90046001600160a01b0316426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156129c057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116129a2575b50509650505050505050600060405180830381600087803b1580156129e457600080fd5b505af11580156129f8573d6000803e3d6000fd5b5050505050612a75565b60a5546001600160a01b03166000908152609b6020526040902054612a2790826125b5565b60a580546001600160a01b039081166000908152609b6020908152604091829020949094559154825185815292519082169391891692600080516020613a8c83398151915292908290030190a35b612a838161132e8585612c45565b925050505b6001600160a01b0382166000908152609b6020526040902054612aab90826125b5565b6001600160a01b0383166000908152609b6020526040902055612acf838383613268565b816001600160a01b0316836001600160a01b0316600080516020613a8c833981519152836040518082815260200191505060405180910390a3505050565b60008184841115612b9c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b61578181015183820152602001612b49565b50505050905090810190601f168015612b8e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038116612be95760405162461bcd60e51b8152600401808060200182810382526023815260200180613af26023913960400191505060405180910390fd5b609a546040516001600160a01b038084169216907f4e78506f3260e366dc9440ee0b4eca2d03aa91536b7605deb90e873d3fc4e5b490600090a3609a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061260f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612b0d565b600061260f83836132e4565b6001600160a01b038216612cee576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612cfa60008383613147565b609d54612d0790826125b5565b609d556001600160a01b0382166000908152609b6020526040902054612d2d90826125b5565b6001600160a01b0383166000908152609b6020526040812091909155612d54908383613268565b6040805182815290516001600160a01b03841691600091600080516020613a8c8339815191529181900360200190a35050565b6001600160a01b038216612dcc5760405162461bcd60e51b8152600401808060200182810382526021815260200180613aac6021913960400191505060405180910390fd5b612dd882600083613147565b612e15816040518060600160405280602281526020016138c5602291396001600160a01b0385166000908152609b60205260409020549190612b0d565b6001600160a01b0383166000908152609b6020526040902055609d54612e3b9082612c45565b609d556001600160a01b038216600090815260b06020526040902054612e6190826125b5565b6001600160a01b038316600090815260b06020526040902081905560af5411612e9557612e8f60ad83613348565b50612ea2565b612ea060ad8361335d565b505b612eae82600083613268565b6040805182815290516000916001600160a01b03851691600080516020613a8c8339815191529181900360200190a35050565b5490565b600054610100900460ff1680612efe5750612efe612371565b80612f0c575060005460ff16155b612f475760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff16158015612414576000805460ff1961ff00199091166101001716600117905580156112f0576000805461ff001916905550565b600054610100900460ff1680612f9e5750612f9e612371565b80612fac575060005460ff16155b612fe75760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff16158015613012576000805460ff1961ff0019909116610100171660011790555b600061301c6124c5565b606580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35080156112f0576000805461ff001916905550565b600054610100900460ff16806130975750613097612371565b806130a5575060005460ff16155b6130e05760405162461bcd60e51b815260040180806020018281038252602e815260200180613a5e602e913960400191505060405180910390fd5b600054610100900460ff1615801561310b576000805460ff1961ff0019909116610100171660011790555b6131136124c5565b609a80546001600160a01b0319166001600160a01b039290921691909117905580156112f0576000805461ff001916905550565b613152838383613372565b6001600160a01b0383166131c857609e546131758261316f6110d9565b906125b5565b11156131c8576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b505050565b6000826131dc575060006110d3565b828202828482816131e957fe5b041461260f5760405162461bcd60e51b81526004018080602001828103825260218152602001806139f56021913960400191505060405180910390fd5b600061260f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135a3565b60ac546001600160a01b0384166000908152609b60205260409020541061329a5761329460aa84613348565b506132a7565b6132a560aa8461335d565b505b60ac546001600160a01b0383166000908152609b6020526040902054106132d9576132d360aa83613348565b506131c8565b6110b560aa8361335d565b815460009082106133265760405162461bcd60e51b81526004018080602001828103825260228152602001806138806022913960400191505060405180910390fd5b82600001828154811061333557fe5b9060005260206000200154905092915050565b600061260f836001600160a01b038416613608565b600061260f836001600160a01b038416613652565b6099546001600160a01b0316158061338a5750609754155b15613394576131c8565b6098541580156133b257506099546001600160a01b03848116911614155b80156133cb57506099546001600160a01b038381169116145b80156133d75750600081115b156133e157426098555b6099546001600160a01b03848116911614801561340c57506099546001600160a01b03838116911614155b156131c857600061341b6110df565b5050505050905060008111156110b5576000609761343a836001612c45565b8154811061344457fe5b600091825260208083206001600160a01b03881684526002600490930201918201905260409091205490915060ff166134c4576040805162461bcd60e51b815260206004820152601e60248201527f4c4745202d204275796572206973206e6f742077686974656c69737465640000604482015290519081900360640190fd5b60018101546001600160a01b038516600090815260038301602052604081205490911115613518576001600160a01b0385166000908152600383016020526040902054600183015461351591612c45565b90505b808411156135575760405162461bcd60e51b81526004018080602001828103825260268152602001806139cf6026913960400191505060405180910390fd5b6001600160a01b038516600090815260038301602052604090205461357c90856125b5565b6001600160a01b038616600090815260039093016020526040909220919091555050505050565b600081836135f25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612b61578181015183820152602001612b49565b5060008385816135fe57fe5b0495945050505050565b60006136148383613718565b61364a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110d3565b5060006110d3565b6000818152600183016020526040812054801561370e578354600019808301919081019060009087908390811061368557fe5b90600052602060002001549050808760000184815481106136a257fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806136d257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110d3565b60009150506110d3565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061377157805160ff191683800117855561379e565b8280016001018555821561379e579182015b8281111561379e578251825591602001919060010190613783565b506137aa929150613830565b5090565b50805460008255600402906000526020600020908101906112f09190613845565b828054828255906000526020600020908101928215613824579160200282015b8281111561382457825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906137ef565b506137aa929150613860565b5b808211156137aa5760008155600101613831565b5b808211156137aa5760008082556001820155600401613846565b5b808211156137aa5780546001600160a01b031916815560010161386156fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373466565207265776172642061646472657373206d757374206e6f74206265207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543616c6c6572206973206e6f74207468652077686974656c69737465720000004e6577206d696e696d756d20616d6f756e74206d7573742062652067726561746572207468616e2063757272656e744c4745202d20416d6f756e7420657863656564732077686974656c697374206d6178696d756d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734e65772077686974656c697374657220697320746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737346656573206d757374206e6f7420746f74616c206d6f7265207468616e203130302545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220958217139cfd90d39258b07eae74b9886792dcc56e3b4d48f66d649e07499c5464736f6c634300060c0033
Deployed Bytecode Sourcemap
38244:12316:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43138:92;;;:::i;:::-;;;;;;;;;;;;;;;;39276:973;;;;;;;;;;;;;;;;-1:-1:-1;39276:973:0;;;;;;;;-1:-1:-1;;;;;39276:973:0;;;;;;;;;;;;:::i;:::-;;47924:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40794:207;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40794:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40794:207:0;;;;;;;;;;;;-1:-1:-1;40794:207:0;-1:-1:-1;40794:207:0;;;;:::i;49017:169::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49017:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48311:100;;;:::i;35945:804::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48546:120;;;;;;;;;;;;;;;;-1:-1:-1;48546:120:0;-1:-1:-1;;;;;48546:120:0;;:::i;49194:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49194:321:0;;;;;;;;;;;;;;;;;:::i;33058:133::-;;;;;;;;;;;;;;;;-1:-1:-1;33058:133:0;-1:-1:-1;;;;;33058:133:0;;:::i;44210:859::-;;;;;;;;;;;;;;;;-1:-1:-1;44210:859:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48211:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48128:75;;;:::i;49523:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49523:218:0;;;;;;;;:::i;40257:::-;;;;;;;;;;;;;;;;-1:-1:-1;40257:218:0;;:::i;41786:99::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41786:99:0;;;;;;;;:::i;42340:117::-;;;;;;;;;;;;;;;;-1:-1:-1;42340:117:0;;:::i;34776:700::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34776:700:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34776:700:0;;;;;;;;;;;;-1:-1:-1;34776:700:0;-1:-1:-1;34776:700:0;;;;:::i;32285:30::-;;;:::i;:::-;;;;-1:-1:-1;;;;;32285:30:0;;;;;;;;;;;;;;33833:573;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33833:573:0;;;;;;;;;;;;;;;-1:-1:-1;;;33833:573:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33833:573:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33833:573:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33833:573:0;;;;;;;;;;-1:-1:-1;33833:573:0;;-1:-1:-1;33833:573:0;-1:-1:-1;33833:573:0;:::i;40483:218::-;;;;;;;;;;;;;;;;-1:-1:-1;40483:218:0;;:::i;38963:35::-;;;;;;;;;;;;;;;;-1:-1:-1;38963:35:0;;:::i;38817:28::-;;;:::i;50380:174::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50380:174:0;;;;;;;;;;;;;;;;;:::i;48419:119::-;;;;;;;;;;;;;;;;-1:-1:-1;48419:119:0;-1:-1:-1;;;;;48419:119:0;;:::i;38737:44::-;;;;;;;;;;;;;;;;-1:-1:-1;38737:44:0;-1:-1:-1;;;;;38737:44:0;;:::i;9455:148::-;;;:::i;38787:26::-;;;:::i;44110:92::-;;;:::i;41567:90::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41567:90:0;;;;;;;;;;:::i;8813:79::-;;;:::i;48024:96::-;;;:::i;32882:164::-;;;:::i;49749:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49749:269:0;;;;;;;;:::i;32194:43::-;;;;;;;;;;;;;;;;-1:-1:-1;32194:43:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48675:175;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48675:175:0;;;;;;;;:::i;43238:864::-;;;;;;;;;;;;;;;;-1:-1:-1;43238:864:0;;;;;;;:::i;40709:77::-;;;;;;;;;;;;;;;;-1:-1:-1;40709:77:0;-1:-1:-1;;;;;40709:77:0;;:::i;41662:112::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41662:112:0;;;;;;;;;;:::i;39171:32::-;;;:::i;32328:27::-;;;:::i;32250:28::-;;;:::i;48858:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48858:151:0;;;;;;;;;;:::i;41013:549::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;41013:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;41013:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41013:549:0;;-1:-1:-1;;;41013:549:0;;-1:-1:-1;;;;;41013:549:0;;-1:-1:-1;41013:549:0;;-1:-1:-1;41013:549:0:i;38890:37::-;;;;;;;;;;;;;;;;-1:-1:-1;38890:37:0;-1:-1:-1;;;;;38890:37:0;;:::i;38934:22::-;;;:::i;9758:244::-;;;;;;;;;;;;;;;;-1:-1:-1;9758:244:0;-1:-1:-1;;;;;9758:244:0;;:::i;39093:32::-;;;:::i;38852:::-;;;:::i;43138:92::-;43178:7;43205:17;:8;:15;:17::i;:::-;43198:24;;43138:92;:::o;39276:973::-;5058:12;;;;;;;;:31;;;5074:15;:13;:15::i;:::-;5058:47;;;-1:-1:-1;5094:11:0;;;;5093:12;5058:47;5050:106;;;;-1:-1:-1;;;5050:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5165:19;5188:12;;;;;;5187:13;5207:83;;;;5236:12;:19;;-1:-1:-1;;;;5236:19:0;;;;;5264:18;5251:4;5264:18;;;5207:83;39443:20:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;39443:20:0::1;::::0;;::::1;::::0;;;::::1;::::0;:5:::1;::::0;:20:::1;:::i;:::-;-1:-1:-1::0;39474:17:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;39474:17:0::1;::::0;;::::1;::::0;;;::::1;::::0;:7:::1;::::0;:17:::1;:::i;:::-;-1:-1:-1::0;39504:9:0::1;:14:::0;;-1:-1:-1;;39504:14:0::1;39516:2;39504:14;::::0;;39546:12:::1;39539:4;:19:::0;39579:16:::1;:14;:16::i;:::-;39600:23;:21;:23::i;:::-;39656:4;39636:17;:24;;;;39691:4;39671:17;:24;;;;39704:20;39746:6;39704:49;;39758:19;39798:1;-1:-1:-1::0;;;;;39798:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;39798:11:0;39861:8:::1;::::0;;-1:-1:-1;;;39861:8:0;;;;39798:11;;-1:-1:-1;39825:52:0::1;::::0;-1:-1:-1;;;;;39833:12:0;;::::1;::::0;::::1;::::0;39854:4:::1;::::0;39861:6;::::1;::::0;::::1;::::0;:8:::1;::::0;;::::1;::::0;39798:11:::1;::::0;39861:8;;;;;;;:6;:8;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;39861:8:0;39833:37:::1;::::0;;-1:-1:-1;;;;;;39833:37:0::1;::::0;;;;;;-1:-1:-1;;;;;39833:37:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;39861:8:::1;::::0;39833:37;;;;;;;-1:-1:-1;39833:37:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;39833:37:0;39872:4:::1;39825:7;:52::i;:::-;39935:16;::::0;;39949:1:::1;39935:16:::0;;;39898:34:::1;39935:16:::0;;::::1;::::0;;39898:34;39935:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;39935:16:0::1;39898:53;;40007:4;39976:17;39994:1;39976:20;;;;;;;;;;;;;:36;-1:-1:-1::0;;;;;39976:36:0::1;;;-1:-1:-1::0;;;;;39976:36:0::1;;;::::0;::::1;40046:1;-1:-1:-1::0;;;;;40046:6:0::1;;:8;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;40046:8:0;40023:20;;:17;;40041:1:::1;::::0;40023:20;::::1;;;;;;;;;;:31;-1:-1:-1::0;;;;;40023:31:0::1;;;-1:-1:-1::0;;;;;40023:31:0::1;;;::::0;::::1;40063:70;40071:10;40083:12;40097:17;40116:16;40063:7;:70::i;:::-;40142:7;:16:::0;;-1:-1:-1;;;;;;40142:16:0::1;-1:-1:-1::0;;;;;40142:16:0;::::1;;::::0;;40167:34:::1;40182:12;:10;:12::i;:::-;40196:4;40167:14;:34::i;:::-;40206:35;40229:4;40236;40206:14;:35::i;:::-;5298:1;;;5312:14:::0;5308:57;;;5352:5;5337:20;;-1:-1:-1;;5337:20:0;;;5308:57;39276:973;;;;;:::o;47924:92::-;48003:5;47996:12;;;;;;;;-1:-1:-1;;47996:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47970:13;;47996:12;;48003:5;;47996:12;;48003:5;47996:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47924:92;:::o;40794:207::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;40892:9:::1;40887:107;40907:20:::0;;::::1;40887:107;;;40975:7;40949:9;:23;40959:9;;40969:1;40959:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;40959:12:0::1;40949:23:::0;;-1:-1:-1;40949:23:0;::::1;::::0;;;;;;-1:-1:-1;40949:23:0;:33;;-1:-1:-1;;40949:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;40929:3:0::1;40887:107;;;;40794:207:::0;;;:::o;49017:169::-;49100:4;49117:39;49126:12;:10;:12::i;:::-;49140:7;49149:6;49117:8;:39::i;:::-;-1:-1:-1;49174:4:0;49017:169;;;;;:::o;48311:100::-;48391:12;;48311:100;:::o;35945:804::-;35998:7;36007;36016;36025;36034:4;36040:7;36089:1;36073:13;;:17;36070:622;;;36152:13;;36121:28;36190:481;36214:19;:26;36210:30;;36190:481;;;36284:30;36317:19;36337:1;36317:22;;;;;;;;;;;;;;;;;;36284:55;;36399:42;36424:7;:16;;;36399:20;:24;;:42;;;;:::i;:::-;36376:65;;36470:20;36463:3;:27;36460:195;;36521:8;:1;36527;36521:5;:8::i;:::-;36531:16;;36571:17;;;;36549:20;;36590:17;;;36531:16;36608:12;:10;:12::i;:::-;-1:-1:-1;;;;;36590:31:0;;;;;;;;;;;;-1:-1:-1;36590:31:0;;;;;;;36623:17;;;;36641:12;:10;:12::i;:::-;-1:-1:-1;;;;;36623:31:0;-1:-1:-1;;;;;36623:31:0;;;;;;;;;;;;;36513:142;;;;;;;;;;;;;;;;;36460:195;-1:-1:-1;36242:3:0;;36190:481;;;;36070:622;;-1:-1:-1;36720:1:0;;-1:-1:-1;36720:1:0;;-1:-1:-1;36720:1:0;;-1:-1:-1;36720:1:0;;-1:-1:-1;36720:1:0;;-1:-1:-1;36720:1:0;35945:804;;;;;;;:::o;48546:120::-;-1:-1:-1;;;;;48635:23:0;48608:7;48635:23;;;:14;:23;;;;;;;48546:120::o;49194:321::-;49300:4;49317:36;49327:6;49335:9;49346:6;49317:9;:36::i;:::-;49364:121;49373:6;49381:12;:10;:12::i;:::-;49395:89;49433:6;49395:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49395:19:0;;;;;;:11;:19;;;;;;49415:12;:10;:12::i;:::-;-1:-1:-1;;;;;49395:33:0;;;;;;;;;;;;-1:-1:-1;49395:33:0;;;:89;:37;:89::i;:::-;49364:8;:121::i;:::-;-1:-1:-1;49503:4:0;49194:321;;;;;:::o;33058:133::-;32804:12;:10;:12::i;:::-;32788;;-1:-1:-1;;;;;32788:12:0;;;:28;;;32780:70;;;;;-1:-1:-1;;;32780:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32780:70:0;;;;;;;;;;;;;;;33147:36:::1;33168:14;33147:20;:36::i;:::-;33058:133:::0;:::o;44210:859::-;44292:16;44310;44349:28;44388;44460:1;44440:17;:8;:15;:17::i;:::-;:21;:55;;;;;44478:17;:8;:15;:17::i;:::-;44465:10;:30;44440:55;44437:570;;;44565:5;44529:33;44551:10;44529:17;:8;:15;:17::i;:::-;:21;;:33::i;:::-;:41;44526:104;;;44597:33;44619:10;44597:17;:8;:15;:17::i;:33::-;44589:41;;44526:104;44687:5;44673:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44673:20:0;;44659:34;;44736:5;44722:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44722:20:0;;44708:34;;44772:9;44767:215;44791:5;44787:1;:9;44767:215;;;44857:30;44869:17;:10;44884:1;44869:14;:17::i;:::-;44857:8;;:11;:30::i;:::-;44840:11;44852:1;44840:14;;;;;;;;;;;;;:47;-1:-1:-1;;;;;44840:47:0;;;-1:-1:-1;;;;;44840:47:0;;;;;44923:25;44933:11;44945:1;44933:14;;;;;;;;;;;;;;44923:9;:25::i;:::-;44906:11;44918:1;44906:14;;;;;;;;;;;;;;;;;:42;44798:3;;44767:215;;;;44437:570;45027:11;;;;-1:-1:-1;44210:859:0;-1:-1:-1;;;44210:859:0:o;48211:92::-;48286:9;;;;48211:92;:::o;48128:75::-;48191:4;;48128:75;:::o;49523:218::-;49611:4;49628:83;49637:12;:10;:12::i;:::-;49651:7;49660:50;49699:10;49660:11;:25;49672:12;:10;:12::i;:::-;-1:-1:-1;;;;;49660:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;49660:25:0;;;:34;;;;;;;;;;;:38;:50::i;40257:218::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;40357:17:::1;;40344:10;:30;40336:90;;;;-1:-1:-1::0;;;40336:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40437:17;:30:::0;40257:218::o;41786:99::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;41858:19:::1;41864:3;41869:7;41858:5;:19::i;:::-;41786:99:::0;;:::o;42340:117::-;42395:4;;:16;;42404:6;42395:8;:16::i;:::-;42390:4;:21;42422:27;42428:12;:10;:12::i;:::-;42442:6;42422:5;:27::i;34776:700::-;32804:12;:10;:12::i;:::-;32788;;-1:-1:-1;;;;;32788:12:0;;;:28;;;32780:70;;;;;-1:-1:-1;;;32780:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32780:70:0;;;;;;;;;;;;;;;34954:19:::1;:26:::0;34946:34;::::1;34938:60;;;::::0;;-1:-1:-1;;;34938:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34938:60:0;;;;;;;;;;;;;::::1;;35029:1;35017:9;:13;35009:43;;;::::0;;-1:-1:-1;;;35009:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35009:43:0;;;;;;;;;;;;;::::1;;35080:19;35100:5;35080:26;;;;;;;;;;;;;;;;;;:35;;;35068:8;:47;35065:111;;35168:8;35130:19;35150:5;35130:26;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:46:::0;35065:111:::1;35213:19;35233:5;35213:26;;;;;;;;;;;;;;;;;;:36;;;35200:9;:49;35197:117;;35305:9;35266:19;35286:5;35266:26;;;;;;;;;;;;;;;;;;:36;;:48;;;;35197:117;35340:9;35335:134;35355:20:::0;;::::1;35335:134;;;35450:7;35397:19;35417:5;35397:26;;;;;;;;;;;;;;;;;;:36;;:50;35434:9;;35444:1;35434:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;35434:12:0::1;35397:50:::0;;-1:-1:-1;35397:50:0;::::1;::::0;;;;;;-1:-1:-1;35397:50:0;:60;;-1:-1:-1;;35397:60:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;35377:3:0::1;35335:134;;;;34776:700:::0;;;;;;:::o;32285:30::-;;;-1:-1:-1;;;;;32285:30:0;;:::o;33833:573::-;32804:12;:10;:12::i;:::-;32788;;-1:-1:-1;;;;;32788:12:0;;;:28;;;32780:70;;;;;-1:-1:-1;;;32780:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32780:70:0;;;;;;;;;;;;;;;33989:37;;::::1;33981:70;;;::::0;;-1:-1:-1;;;33981:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33981:70:0;;;;;;;;;;;;;::::1;;34072:15;:29:::0;;-1:-1:-1;;;;;;34072:29:0::1;-1:-1:-1::0;;;;;34072:29:0;::::1;;::::0;;34125:20;;34122:277:::1;;34176:26;34183:19;;34176:26;:::i;:::-;34232:9;34227:151;34247:20:::0;;::::1;34227:151;;;34293:19;34318:43;;;;;;;;34333:9;;34343:1;34333:12;;;;;;;;;;;;;34318:43;;;;34347:10;;34358:1;34347:13;;;;;;;;::::0;;::::1;::::0;;;::::1;;34318:43:::0;;;34293:69;;::::1;::::0;;::::1;::::0;;-1:-1:-1;34293:69:0;;;;;;;;;::::1;::::0;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;-1:-1:-1;34269:3:0::1;34227:151;;;;33833:573:::0;;;;;:::o;40483:218::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;40583:17:::1;;40570:10;:30;40562:90;;;;-1:-1:-1::0;;;40562:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40663:17;:30:::0;40483:218::o;38963:35::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38963:35:0;;-1:-1:-1;38963:35:0;:::o;38817:28::-;;;;:::o;50380:174::-;50480:4;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;50511:13:::1;-1:-1:-1::0;;;;;50504:30:0::1;;50535:2;50539:6;50504:42;;;;;;;;;;;;;-1:-1:-1::0;;;;;50504:42:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;50504:42:0;;50380:174;-1:-1:-1;;;;50380:174:0:o;48419:119::-;-1:-1:-1;;;;;48512:18:0;48485:7;48512:18;;;:9;:18;;;;;;;48419:119::o;38737:44::-;;;;;;;;;;;;;;;:::o;9455:148::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;9546:6:::1;::::0;9525:40:::1;::::0;9562:1:::1;::::0;-1:-1:-1;;;;;9546:6:0::1;::::0;9525:40:::1;::::0;9562:1;;9525:40:::1;9576:6;:19:::0;;-1:-1:-1;;;;;;9576:19:0::1;::::0;;9455:148::o;38787:26::-;;;;:::o;44110:92::-;44150:7;44177:17;:8;:15;:17::i;41567:90::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41634:8:0;;;::::1;;::::0;;;:5:::1;:8;::::0;;;;:15;;-1:-1:-1;;41634:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41567:90::o;8813:79::-;8878:6;;-1:-1:-1;;;;;8878:6:0;8813:79;:::o;48024:96::-;48105:7;48098:14;;;;;;;;-1:-1:-1;;48098:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48072:13;;48098:14;;48105:7;;48098:14;;48105:7;48098:14;;;;;;;;;;;;;;;;;;;;;;;;32882:164;32804:12;:10;:12::i;:::-;32788;;-1:-1:-1;;;;;32788:12:0;;;:28;;;32780:70;;;;;-1:-1:-1;;;32780:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32780:70:0;;;;;;;;;;;;;;;32977:12:::1;::::0;32954:48:::1;::::0;32999:1:::1;::::0;-1:-1:-1;;;;;32977:12:0::1;::::0;32954:48:::1;::::0;32999:1;;32954:48:::1;33013:12;:25:::0;;-1:-1:-1;;;;;;33013:25:0::1;::::0;;32882:164::o;49749:269::-;49842:4;49859:129;49868:12;:10;:12::i;:::-;49882:7;49891:96;49930:15;49891:96;;;;;;;;;;;;;;;;;:11;:25;49903:12;:10;:12::i;:::-;-1:-1:-1;;;;;49891:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;49891:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;32194:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32194:43:0;:::o;48675:175::-;48761:4;48778:42;48788:12;:10;:12::i;:::-;48802:9;48813:6;48778:9;:42::i;43238:864::-;43320:16;43338;43377:28;43416;43488:1;43468:17;:8;:15;:17::i;:::-;:21;:55;;;;;43506:17;:8;:15;:17::i;:::-;43493:10;:30;43468:55;43465:575;;;43593:5;43557:33;43579:10;43557:17;:8;:15;:17::i;:33::-;:41;43554:104;;;43625:33;43647:10;43625:17;:8;:15;:17::i;:33::-;43617:41;;43554:104;43715:5;43701:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43701:20:0;;43687:34;;43764:5;43750:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43750:20:0;;43736:34;;43800:9;43795:220;43819:5;43815:1;:9;43795:220;;;43885:30;43897:17;:10;43912:1;43897:14;:17::i;:::-;43885:8;;:11;:30::i;:::-;43868:11;43880:1;43868:14;;;;;;;;;;;;;:47;-1:-1:-1;;;;;43868:47:0;;;-1:-1:-1;;;;;43868:47:0;;;;;43951:14;:30;43966:11;43978:1;43966:14;;;;;;;;;;;;;;-1:-1:-1;;;;;43951:30:0;-1:-1:-1;;;;;43951:30:0;;;;;;;;;;;;;43934:11;43946:1;43934:14;;;;;;;;;;;;;;;;;:47;43826:3;;43795:220;;40709:77;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;40767:7:::1;:11:::0;;-1:-1:-1;;;;;;40767:11:0::1;-1:-1:-1::0;;;;;40767:11:0;;;::::1;::::0;;;::::1;::::0;;40709:77::o;41662:112::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41740:15:0;;;::::1;;::::0;;;:12:::1;:15;::::0;;;;:26;;-1:-1:-1;;41740:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41662:112::o;39171:32::-;;;;:::o;32328:27::-;;;-1:-1:-1;;;;;32328:27:0;;:::o;32250:28::-;;;;:::o;48858:151::-;-1:-1:-1;;;;;48974:18:0;;;48947:7;48974:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;48858:151::o;41013:549::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;41202:4:::1;41170:28;:10:::0;41185:12;41170:14:::1;:28::i;:::-;:36;;41162:83;;;;-1:-1:-1::0;;;41162:83:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41291:1;41264:17;:24;:28;41256:53;;;::::0;;-1:-1:-1;;;41256:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41256:53:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;41322:30:0;::::1;41314:86;;;;-1:-1:-1::0;;;41314:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41409:11;:24:::0;;;41438:13:::1;:28:::0;;;41471:38;;::::1;::::0;:18:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;41514:17:0::1;:36:::0;;-1:-1:-1;;;;;;41514:36:0::1;-1:-1:-1::0;;;;;41514:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;41013:549:0:o;38890:37::-;;;;;;;;;;;;;;;:::o;38934:22::-;;;-1:-1:-1;;;;;38934:22:0;;:::o;9758:244::-;9035:12;:10;:12::i;:::-;9025:6;;-1:-1:-1;;;;;9025:6:0;;;:22;;;9017:67;;;;;-1:-1:-1;;;9017:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9017:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;9847:22:0;::::1;9839:73;;;;-1:-1:-1::0;;;9839:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9949:6;::::0;9928:38:::1;::::0;-1:-1:-1;;;;;9928:38:0;;::::1;::::0;9949:6:::1;::::0;9928:38:::1;::::0;9949:6:::1;::::0;9928:38:::1;9977:6;:17:::0;;-1:-1:-1;;;;;;9977:17:0::1;-1:-1:-1::0;;;;;9977:17:0;;;::::1;::::0;;;::::1;::::0;;9758:244::o;39093:32::-;;;;:::o;38852:::-;;;-1:-1:-1;;;;;38852:32:0;;:::o;23284:117::-;23347:7;23374:19;23382:3;23374:7;:19::i;5459:508::-;5876:4;5922:17;5954:7;5459:508;:::o;8391:129::-;5058:12;;;;;;;;:31;;;5074:15;:13;:15::i;:::-;5058:47;;;-1:-1:-1;5094:11:0;;;;5093:12;5058:47;5050:106;;;;-1:-1:-1;;;5050:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5165:19;5188:12;;;;;;5187:13;5207:83;;;;5236:12;:19;;-1:-1:-1;;;;5236:19:0;;;;;5264:18;5251:4;5264:18;;;5207:83;8449:26:::1;:24;:26::i;:::-;8486;:24;:26::i;:::-;5312:14:::0;5308:57;;;5352:5;5337:20;;-1:-1:-1;;5337:20:0;;;8391:129;:::o;32475:143::-;5058:12;;;;;;;;:31;;;5074:15;:13;:15::i;:::-;5058:47;;;-1:-1:-1;5094:11:0;;;;5093:12;5058:47;5050:106;;;;-1:-1:-1;;;5050:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5165:19;5188:12;;;;;;5187:13;5207:83;;;;5236:12;:19;;-1:-1:-1;;;;5236:19:0;;;;;5264:18;5251:4;5264:18;;;5207:83;32540:26:::1;:24;:26::i;:::-;32577:33;:31;:33::i;7089:106::-:0;7177:10;7089:106;:::o;50026:346::-;-1:-1:-1;;;;;50128:19:0;;50120:68;;;;-1:-1:-1;;;50120:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50207:21:0;;50199:68;;;;-1:-1:-1;;;50199:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50280:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;50332:32;;;;;;;;;;;;;;;;;50026:346;;;:::o;10983:181::-;11041:7;11073:5;;;11097:6;;;;11089:46;;;;;-1:-1:-1;;;11089:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11155:1;10983:181;-1:-1:-1;;;10983:181:0:o;45735:2181::-;-1:-1:-1;;;;;45833:20:0;;45825:70;;;;-1:-1:-1;;;45825:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45914:23:0;;45906:71;;;;-1:-1:-1;;;45906:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46008:17:0;;;;;;:9;:17;;;;;;;;;:41;;-1:-1:-1;;;;;;46029:20:0;;;;;;:9;:20;;;;;;;;46008:41;46006:44;45998:81;;;;;-1:-1:-1;;;45998:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46094:47;46115:6;46123:9;46134:6;46094:20;:47::i;:::-;46170:71;46192:6;46170:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46170:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;46150:17:0;;;;;;;:9;:17;;;;;;;;:91;;;;46253:16;;;;;:5;:16;;;;;;;:41;;;;-1:-1:-1;;;;;;46274:20:0;;;;;;:12;:20;;;;;;;;46273:21;46253:41;46250:1481;;;46346:11;;46307:21;;46346:15;46343:246;;46391:34;46419:5;46391:23;46402:11;;46391:6;:10;;:23;;;;:::i;:::-;:27;;:34::i;:::-;46445:4;;46375:50;;-1:-1:-1;46445:23:0;;46375:50;46445:8;:23::i;:::-;46438:4;:30;46490:12;;:31;;46507:13;46490:16;:31::i;:::-;46475:12;:46;46533:43;;;;;;;;46558:1;;-1:-1:-1;;;;;46533:43:0;;;-1:-1:-1;;;;;;;;;;;46533:43:0;;;;;;;;46343:246;46599:23;46656:1;46640:13;;:17;:52;;;;-1:-1:-1;46661:17:0;;-1:-1:-1;;;;;46661:17:0;:31;;46640:52;46637:1018;;;46729:36;46759:5;46729:25;46740:13;;46729:6;:10;;:25;;;;:::i;:36::-;46781:7;;46711:54;;-1:-1:-1;;;;;;46781:7:0;:21;46778:865;;46870:4;46852:24;;;;:9;:24;;;;;;:45;;46881:15;46852:28;:45::i;:::-;46843:4;46825:24;;;;:9;:24;;;;;;;;;:72;;;;46923:48;;;;;;;46843:4;;-1:-1:-1;;;;;46923:48:0;;;-1:-1:-1;;;;;;;;;;;46923:48:0;;;;;;;;;47034:7;;-1:-1:-1;;;;;47034:7:0;47087:49;47104:4;47034:7;47120:15;47087:8;:49::i;:::-;47165:1;-1:-1:-1;;;;;47165:55:0;;47247:15;47289:1;47317:18;47362:17;;;;;;;;;-1:-1:-1;;;;;47362:17:0;47406:15;47165:279;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47165:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47165:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46778:865;;;;47528:17;;-1:-1:-1;;;;;47528:17:0;47518:28;;;;:9;:28;;;;;;:49;;47551:15;47518:32;:49::i;:::-;47497:17;;;-1:-1:-1;;;;;47497:17:0;;;47487:28;;;;:9;:28;;;;;;;;;:80;;;;47600:17;;47583:52;;;;;;;47600:17;;;;47583:52;;;;-1:-1:-1;;;;;;;;;;;47583:52:0;;;;;;;;46778:865;47674:46;47704:15;47674:25;:6;47685:13;47674:10;:25::i;:46::-;47665:55;;46250:1481;;;-1:-1:-1;;;;;47766:20:0;;;;;;:9;:20;;;;;;:32;;47791:6;47766:24;:32::i;:::-;-1:-1:-1;;;;;47743:20:0;;;;;;:9;:20;;;;;:55;47811:46;47831:6;47753:9;47850:6;47811:19;:46::i;:::-;47890:9;-1:-1:-1;;;;;47873:35:0;47882:6;-1:-1:-1;;;;;47873:35:0;-1:-1:-1;;;;;;;;;;;47901:6:0;47873:35;;;;;;;;;;;;;;;;;;45735:2181;;;:::o;11870:192::-;11956:7;11992:12;11984:6;;;;11976:29;;;;-1:-1:-1;;;11976:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12028:5:0;;;11870:192::o;33203:266::-;-1:-1:-1;;;;;33285:28:0;;33277:76;;;;-1:-1:-1;;;33277:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33392:12;;33369:52;;-1:-1:-1;;;;;33369:52:0;;;;33392:12;;33369:52;;33392:12;;33369:52;33432:12;:29;;-1:-1:-1;;;;;;33432:29:0;-1:-1:-1;;;;;33432:29:0;;;;;;;;;;33203:266::o;11439:136::-;11497:7;11524:43;11528:1;11531;11524:43;;;;;;;;;;;;;;;;;:3;:43::i;23745:149::-;23819:7;23862:22;23866:3;23878:5;23862:3;:22::i;41893:439::-;-1:-1:-1;;;;;41977:21:0;;41969:65;;;;;-1:-1:-1;;;41969:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42047:49;42076:1;42080:7;42089:6;42047:20;:49::i;:::-;42124:12;;:24;;42141:6;42124:16;:24::i;:::-;42109:12;:39;-1:-1:-1;;;;;42180:18:0;;;;;;:9;:18;;;;;;:30;;42203:6;42180:22;:30::i;:::-;-1:-1:-1;;;;;42159:18:0;;;;;;:9;:18;;;;;:51;;;;42223:48;;42169:7;42264:6;42223:19;:48::i;:::-;42287:37;;;;;;;;-1:-1:-1;;;;;42287:37:0;;;42304:1;;-1:-1:-1;;;;;;;;;;;42287:37:0;;;;;;;;41893:439;;:::o;42465:665::-;-1:-1:-1;;;;;42549:21:0;;42541:67;;;;-1:-1:-1;;;42541:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42621:49;42642:7;42659:1;42663:6;42621:20;:49::i;:::-;42704:68;42727:6;42704:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42704:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;42683:18:0;;;;;;:9;:18;;;;;:89;42798:12;;:24;;42815:6;42798:16;:24::i;:::-;42783:12;:39;-1:-1:-1;;;;;42861:23:0;;;;;;:14;:23;;;;;;:35;;42889:6;42861:27;:35::i;:::-;-1:-1:-1;;;;;42835:23:0;;;;;;:14;:23;;;;;:61;;;42937:17;;-1:-1:-1;42907:101:0;;42956:21;:8;42969:7;42956:12;:21::i;:::-;;42907:101;;;42984:24;:8;43000:7;42984:15;:24::i;:::-;;42907:101;43021:48;43041:7;43058:1;43062:6;43021:19;:48::i;:::-;43085:37;;;;;;;;43111:1;;-1:-1:-1;;;;;43085:37:0;;;-1:-1:-1;;;;;;;;;;;43085:37:0;;;;;;;;42465:665;;:::o;21575:109::-;21658:18;;21575:109::o;7010:69::-;5058:12;;;;;;;;:31;;;5074:15;:13;:15::i;:::-;5058:47;;;-1:-1:-1;5094:11:0;;;;5093:12;5058:47;5050:106;;;;-1:-1:-1;;;5050:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5165:19;5188:12;;;;;;5187:13;5207:83;;;;5236:12;:19;;-1:-1:-1;;;;5236:19:0;;;;;5264:18;5251:4;5264:18;;;5312:14;5308:57;;;5352:5;5337:20;;-1:-1:-1;;5337:20:0;;;7010:69;:::o;8528:202::-;5058:12;;;;;;;;:31;;;5074:15;:13;:15::i;:::-;5058:47;;;-1:-1:-1;5094:11:0;;;;5093:12;5058:47;5050:106;;;;-1:-1:-1;;;5050:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5165:19;5188:12;;;;;;5187:13;5207:83;;;;5236:12;:19;;-1:-1:-1;;;;5236:19:0;;;;;5264:18;5251:4;5264:18;;;5207:83;8600:17:::1;8620:12;:10;:12::i;:::-;8643:6;:18:::0;;-1:-1:-1;;;;;;8643:18:0::1;-1:-1:-1::0;;;;;8643:18:0;::::1;::::0;;::::1;::::0;;;8677:43:::1;::::0;8643:18;;-1:-1:-1;8643:18:0;-1:-1:-1;;8677:43:0::1;::::0;-1:-1:-1;;8677:43:0::1;5298:1;5312:14:::0;5308:57;;;5352:5;5337:20;;-1:-1:-1;;5337:20:0;;;8528:202;:::o;32624:106::-;5058:12;;;;;;;;:31;;;5074:15;:13;:15::i;:::-;5058:47;;;-1:-1:-1;5094:11:0;;;;5093:12;5058:47;5050:106;;;;-1:-1:-1;;;5050:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5165:19;5188:12;;;;;;5187:13;5207:83;;;;5236:12;:19;;-1:-1:-1;;;;5236:19:0;;;;;5264:18;5251:4;5264:18;;;5207:83;32708:12:::1;:10;:12::i;:::-;32693;:27:::0;;-1:-1:-1;;;;;;32693:27:0::1;-1:-1:-1::0;;;;;32693:27:0;;;::::1;::::0;;;::::1;::::0;;5308:57;;;;5352:5;5337:20;;-1:-1:-1;;5337:20:0;;;32624:106;:::o;45077:326::-;45174:60;45208:6;45216:9;45227:6;45174:33;:60::i;:::-;-1:-1:-1;;;;;45253:20:0;;45249:147;;45350:4;;45321:25;45339:6;45321:13;:11;:13::i;:::-;:17;;:25::i;:::-;:33;;45313:71;;;;;-1:-1:-1;;;45313:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45077:326;;;:::o;12313:471::-;12371:7;12616:6;12612:47;;-1:-1:-1;12646:1:0;12639:8;;12612:47;12683:5;;;12687:1;12683;:5;:1;12707:5;;;;;:10;12699:56;;;;-1:-1:-1;;;12699:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13252:132;13310:7;13337:39;13341:1;13344;13337:39;;;;;;;;;;;;;;;;;:3;:39::i;45411:318::-;45537:17;;-1:-1:-1;;;;;45516:17:0;;;;;;:9;:17;;;;;;:38;45513:93;;45556:20;:8;45569:6;45556:12;:20::i;:::-;;45513:93;;;45583:23;:8;45599:6;45583:15;:23::i;:::-;;45513:93;45644:17;;-1:-1:-1;;;;;45620:20:0;;;;;;:9;:20;;;;;;:41;45617:102;;45663:23;:8;45676:9;45663:12;:23::i;:::-;;45617:102;;;45693:26;:8;45709:9;45693:15;:26::i;22028:204::-;22123:18;;22095:7;;22123:26;-1:-1:-1;22115:73:0;;;;-1:-1:-1;;;22115:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22206:3;:11;;22218:5;22206:18;;;;;;;;;;;;;;;;22199:25;;22028:204;;;;:::o;22486:143::-;22556:4;22580:41;22585:3;-1:-1:-1;;;;;22605:14:0;;22580:4;:41::i;22805:149::-;22878:4;22902:44;22910:3;-1:-1:-1;;;;;22930:14:0;;22902:7;:44::i;36884:1312::-;36996:15;;-1:-1:-1;;;;;36996:15:0;:29;;:64;;-1:-1:-1;37029:19:0;:26;:31;36996:64;36993:89;;;37075:7;;36993:89;37105:13;;:18;:47;;;;-1:-1:-1;37137:15:0;;-1:-1:-1;;;;;37127:25:0;;;37137:15;;37127:25;;37105:47;:79;;;;-1:-1:-1;37169:15:0;;-1:-1:-1;;;;;37156:28:0;;;37169:15;;37156:28;37105:79;:93;;;;;37197:1;37188:6;:10;37105:93;37102:130;;;37229:3;37213:13;:19;37102:130;37266:15;;-1:-1:-1;;;;;37256:25:0;;;37266:15;;37256:25;:57;;;;-1:-1:-1;37298:15:0;;-1:-1:-1;;;;;37285:28:0;;;37298:15;;37285:28;;37256:57;37253:926;;;37367:21;37397:22;:20;:22::i;:::-;37366:53;;;;;;;37463:1;37447:13;:17;37444:710;;;37503:30;37536:19;37556:20;:13;37574:1;37556:17;:20::i;:::-;37536:41;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37622:28:0;;;;:17;37536:41;;;;;37622:17;;;:28;;;;;;;37536:41;;-1:-1:-1;37622:28:0;;37614:71;;;;;-1:-1:-1;;;37614:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37820:17;;;;-1:-1:-1;;;;;37789:28:0;;37722:23;37789:28;;;:17;;;:28;;;;;;37722:23;;-1:-1:-1;37786:143:0;;;-1:-1:-1;;;;;37900:28:0;;;;;;:17;;;:28;;;;;;37878:17;;;;:51;;:21;:51::i;:::-;37860:69;;37786:143;37972:15;37962:6;:25;;37954:76;;;;-1:-1:-1;;;37954:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38080:28:0;;;;;;:17;;;:28;;;;;;:40;;38113:6;38080:32;:40::i;:::-;-1:-1:-1;;;;;38049:28:0;;;;;;:17;;;;:28;;;;;;:71;;;;-1:-1:-1;37253:926:0;36884:1312;;;:::o;13872:345::-;13958:7;14060:12;14053:5;14045:28;;;;-1:-1:-1;;;14045:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14084:9;14100:1;14096;:5;;;;;;;13872:345;-1:-1:-1;;;;;13872:345:0:o;19140:414::-;19203:4;19225:21;19235:3;19240:5;19225:9;:21::i;:::-;19220:327;;-1:-1:-1;19263:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;19446:18;;19424:19;;;:12;;;:19;;;;;;:40;;;;19479:11;;19220:327;-1:-1:-1;19530:5:0;19523:12;;19730:1544;19796:4;19935:19;;;:12;;;:19;;;;;;19971:15;;19967:1300;;20406:18;;-1:-1:-1;;20357:14:0;;;;20406:22;;;;20333:21;;20406:3;;:22;;20693;;;;;;;;;;;;;;20673:42;;20839:9;20810:3;:11;;20822:13;20810:26;;;;;;;;;;;;;;;;;;;:38;;;;20916:23;;;20958:1;20916:12;;;:23;;;;;;20942:17;;;20916:43;;21068:17;;20916:3;;21068:17;;;;;;;;;;;;;;;;;;;;;;21163:3;:12;;:19;21176:5;21163:19;;;;;;;;;;;21156:26;;;21206:4;21199:11;;;;;;;;19967:1300;21250:5;21243:12;;;;;21360:129;21433:4;21457:19;;;:12;;;;;:19;;;;;;:24;;;21360:129::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://958217139cfd90d39258b07eae74b9886792dcc56e3b4d48f66d649e07499c54
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.