Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
75,366.299375043626966281 $UP
Holders
49
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 $UPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
UptownPanda
Compiler Version
v0.6.6+commit.6c089d02
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Pausable.sol"; import "./interfaces/IUptownPanda.sol"; import "./interfaces/IUniswapV2Helper.sol"; import "./UptownPandaTwapable.sol"; import "./UptownPandaBurnable.sol"; contract UptownPanda is ERC20, AccessControl, Pausable, UptownPandaTwapable, UptownPandaBurnable, IUptownPanda { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); address public override uniswapPair; address public uniswapRouter; address public upFarm; address public upEthFarm; address public wethFarm; address public wbtcFarm; address public immutable uniswapV2HelperAddress; IUniswapV2Helper private immutable uniswapV2Helper; constructor(address _uniswapV2HelperAddress) public ERC20("Uptown Panda", "$UP") { uniswapV2HelperAddress = _uniswapV2HelperAddress; uniswapV2Helper = IUniswapV2Helper(_uniswapV2HelperAddress); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _pause(); } modifier senderIsMinter() { require(hasRole(MINTER_ROLE, _msgSender()), "Sender does not have minter role."); _; } modifier originIsAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, tx.origin), "Original sender does not have admin role."); _; } modifier minterSet() { require(getRoleMemberCount(MINTER_ROLE) == 1, "Minter is not set."); _; } modifier notInitialized() { require(!isInitialized(), "Contract has already been initialized."); _; } modifier allowTokenTransfer(address from) { address minter = getMinter(); bool isMsgSenderMinter = _msgSender() == minter; // this is needed for minting tokens to investors while tokens are locked bool isFromMinter = from == minter; // this is needed for liquidity pool transfer while tokens are locked require(!paused() || isMsgSenderMinter || isFromMinter, "Token transfer not allowed."); _; } function revokeRole(bytes32 role, address account) public virtual override { require(false, "No revoking allowed, bro!"); super.revokeRole(role, account); // this is never reached, it's here to get rid of annoying warnings } function renounceRole(bytes32 role, address account) public virtual override { require(false, "No renouncing allowed, bro!"); super.renounceRole(role, account); // this is never reached, it's here to get rid of annoying warnings } function grantRole(bytes32 role, address account) public virtual override { require(false, "No granting allowed, bro!"); super.grantRole(role, account); // this is never reached, it's here to get rid of annoying warnings } function isInitialized() public view override returns (bool) { bool isMinterSet = getRoleMemberCount(MINTER_ROLE) == 1; bool isUniswapPairSet = uniswapPair != address(0); bool isUniswapRouterSet = uniswapRouter != address(0); bool isUpFarmSet = upFarm != address(0); bool isUpEthFarmSet = upEthFarm != address(0); bool isWethFarmSet = wethFarm != address(0); bool isWbtcFarmSet = wbtcFarm != address(0); return isMinterSet && isUniswapPairSet && isUniswapRouterSet && isUpFarmSet && isUpEthFarmSet && isWethFarmSet && isWbtcFarmSet; } function initialize( address _minter, address _weth, address _upFarm, address _upEthFarm, address _wethFarm, address _wbtcFarm ) external override originIsAdmin notInitialized { _setupRole(MINTER_ROLE, _minter); _setupUniswap(_weth); _setupFarms(_upFarm, _upEthFarm, _wethFarm, _wbtcFarm); } function getMinter() public view override minterSet returns (address) { return getRoleMember(MINTER_ROLE, 0); } function getListingPriceMultiplier() external view override returns (uint256) { return LISTING_PRICE_MULTIPLIER; } function mint(address _account, uint256 _amount) external override senderIsMinter { _mint(_account, _amount); } function unlock() external override originIsAdmin { _unpause(); _setListingTwap(); _setDefaultBuyTimestamp(); } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { uint256[] memory amountsToBurn = _getAmountsToBurn(sender, recipient, amount); for (uint256 i = 0; i < amountsToBurn.length; i++) { _burn(sender, amountsToBurn[i]); amount = amount.sub(amountsToBurn[i]); } _logBuy(recipient, amount); super._transfer(sender, recipient, amount); } function _getNonBurnableSenders() internal view virtual override returns (address[] memory nonBurnableSenders) { nonBurnableSenders = new address[](7); nonBurnableSenders[0] = getMinter(); nonBurnableSenders[1] = uniswapPair; nonBurnableSenders[2] = uniswapRouter; nonBurnableSenders[3] = upFarm; nonBurnableSenders[4] = upEthFarm; nonBurnableSenders[5] = wethFarm; nonBurnableSenders[6] = wbtcFarm; } function _getNonBurnableRecipients() internal view virtual override returns (address[] memory nonBurnableRecipients) { nonBurnableRecipients = new address[](4); nonBurnableRecipients[0] = upFarm; nonBurnableRecipients[1] = upEthFarm; nonBurnableRecipients[2] = wethFarm; nonBurnableRecipients[3] = wbtcFarm; } function _getNonLoggableRecipients() internal view virtual override returns (address[] memory nonLoggableRecipients) { nonLoggableRecipients = new address[](5); nonLoggableRecipients[0] = uniswapPair; nonLoggableRecipients[1] = upFarm; nonLoggableRecipients[2] = upEthFarm; nonLoggableRecipients[3] = wethFarm; nonLoggableRecipients[4] = wbtcFarm; } function _isWalletToWalletTransfer(address _sender, address _recipient) internal view virtual override returns (bool isWalletToWalletTransfer) { isWalletToWalletTransfer = _sender != uniswapRouter && _recipient != uniswapPair; } function _getListingPriceForBurnCalculation() internal view virtual override returns (uint256 listingPrice) { return _getListingPrice(); } function _getTwapPriceForBurnCalculation() internal virtual override returns (uint256 twapPrice) { _updateTwap(); return currentTwap; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override allowTokenTransfer(from) { super._beforeTokenTransfer(from, to, amount); } function _setupUniswap(address _weth) private { (address token0, address token1) = uniswapV2Helper.sortTokens(address(this), _weth); uniswapPair = uniswapV2Helper.pairFor(token0, token1); uniswapRouter = uniswapV2Helper.getRouterAddress(); bool isUptownPandaToken0 = token0 == address(this); address oracle = uniswapV2Helper.getUniswapV2OracleAddress(); _initializeTwap(isUptownPandaToken0, uniswapPair, oracle); } function _setupFarms( address _upFarm, address _upEthFarm, address _wethFarm, address _wbtcFarm ) private { upFarm = _upFarm; upEthFarm = _upEthFarm; wethFarm = _wethFarm; wbtcFarm = _wbtcFarm; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/math/SafeMath.sol"; contract UptownPandaBurnable { event BuyLogAdded(address indexed buyer, uint256 indexed timestamp, uint256 amount); event BurnAmountCalculated( address indexed sender, address indexed recipient, uint256 indexed buyTimestamp, uint256 buyAmount, uint256 burnAmount ); using SafeMath for uint256; uint256 private constant BURN_PERCENT_SCALE = 1e9; uint256 public constant MAX_BURN_PRICE_MULTIPLIER = 3; uint256 public constant MIN_BURN_PRICE_MULTIPLIER = 10; uint256 public constant MAX_BURN_PERCENT = 30; uint256 public constant MIN_BURN_PERCENT = 5; uint256 public constant WALLET_TO_WALLET_BURN_PERCENT = 5; uint256 public constant SELL_PENALTY_INTERVAL = 5 minutes; struct BuyLog { uint256 amount; uint256 timestamp; } uint256 private defaultBuyTimestamp; mapping(address => BuyLog[]) private buyLogs; mapping(address => uint256) private buyLogTracker; function _getAmountsToBurn( address _sender, address _recipient, uint256 _amount ) internal returns (uint256[] memory) { return _shouldBurnTokens(_sender, _recipient, _amount) ? _calculateAmountsToBurn(_sender, _recipient, _amount) : new uint256[](0); } function _shouldBurnTokens(address _sender, address _recipient, uint256 _amount) private view returns (bool) { if (_amount == 0) { return false; } address[] memory nonBurnableSenders = _getNonBurnableSenders(); for (uint256 i = 0; i < nonBurnableSenders.length; i++) { if (_sender == nonBurnableSenders[i]) { return false; } } address[] memory nonBurnableRecipients = _getNonBurnableRecipients(); for (uint256 i = 0; i < nonBurnableRecipients.length; i++) { if (_recipient == nonBurnableRecipients[i]) { return false; } } return true; } function _calculateAmountsToBurn( address _sender, address _recipient, uint256 _amount ) private returns (uint256[] memory) { BuyLog[] memory burnParts = _getBurnParts(_sender, _amount); uint256[] memory amountsToBurn = new uint256[](burnParts.length); for (uint256 i = 0; i < burnParts.length; i++) { amountsToBurn[i] = _calculateSingleAmountToBurn( _sender, _recipient, burnParts[i].amount, burnParts[i].timestamp ); emit BurnAmountCalculated( _sender, _recipient, burnParts[i].timestamp, burnParts[i].amount, amountsToBurn[i] ); } return amountsToBurn; } function _getBurnParts(address _sender, uint256 _amount) private returns (BuyLog[] memory) { uint256 burnsCount = _getBurnsCount(_sender, _amount); uint256 startBuyLogIndex = buyLogTracker[_sender]; BuyLog[] storage buyLog = buyLogs[_sender]; BuyLog[] memory burnParts = new BuyLog[](burnsCount); uint256 amountLeft = _amount; for (uint256 i = 0; i < burnsCount; i++) { uint256 currentBuyLogIndex = startBuyLogIndex + i; if (currentBuyLogIndex >= buyLog.length) { burnParts[burnsCount - 1] = BuyLog(amountLeft, defaultBuyTimestamp); break; } uint256 subtractAmount = amountLeft >= buyLog[currentBuyLogIndex].amount ? buyLog[currentBuyLogIndex].amount : amountLeft; burnParts[i] = BuyLog(subtractAmount, buyLog[currentBuyLogIndex].timestamp); amountLeft = amountLeft.sub(subtractAmount); buyLog[currentBuyLogIndex].amount = buyLog[currentBuyLogIndex].amount.sub(subtractAmount); if (buyLog[currentBuyLogIndex].amount == 0) { buyLogTracker[_sender] = buyLogTracker[_sender].add(1); } } return burnParts; } function _getBurnsCount(address _sender, uint256 _amount) private view returns (uint256) { BuyLog[] storage buyLog = buyLogs[_sender]; uint256 burnsCount = 0; uint256 amountLeft = _amount; for (uint256 buyLogIndex = buyLogTracker[_sender]; buyLogIndex < buyLog.length; buyLogIndex++) { if (amountLeft == 0) { break; } amountLeft = buyLog[buyLogIndex].amount > amountLeft ? 0 : amountLeft.sub(buyLog[buyLogIndex].amount); burnsCount++; } return amountLeft > 0 ? burnsCount.add(1) : burnsCount; } function _calculateSingleAmountToBurn( address _sender, address _recipient, uint256 _amount, uint256 _timestamp ) private returns (uint256) { // check for sell under 5 minutes bool shouldBurnMaxAmount = block.timestamp.sub(_timestamp) < SELL_PENALTY_INTERVAL; if (shouldBurnMaxAmount) { return _amount.mul(MAX_BURN_PERCENT).div(100); } // check if wallet to wallet transfer if (_isWalletToWalletTransfer(_sender, _recipient)) { return _amount.mul(WALLET_TO_WALLET_BURN_PERCENT).div(100); } // burn by twap uint256 listingPrice = _getListingPriceForBurnCalculation(); uint256 twapPrice = _getTwapPriceForBurnCalculation(); uint256 currentPriceMultiplierScaled = listingPrice.mul(BURN_PERCENT_SCALE).div(twapPrice); if (currentPriceMultiplierScaled <= MAX_BURN_PRICE_MULTIPLIER.mul(BURN_PERCENT_SCALE)) { return _amount.mul(MAX_BURN_PERCENT).div(100); } if (currentPriceMultiplierScaled >= MIN_BURN_PRICE_MULTIPLIER.mul(BURN_PERCENT_SCALE)) { return _amount.mul(MIN_BURN_PERCENT).div(100); } uint256 maxBurnPercentScaled = MAX_BURN_PERCENT.mul(BURN_PERCENT_SCALE); uint256 burnPercentDiff = MAX_BURN_PERCENT.sub(MIN_BURN_PERCENT); uint256 burnPercentDiffDividendScaled = currentPriceMultiplierScaled.sub( MAX_BURN_PRICE_MULTIPLIER.mul(BURN_PERCENT_SCALE) ); uint256 burnPercentDiffDivisor = MIN_BURN_PRICE_MULTIPLIER.sub(MAX_BURN_PRICE_MULTIPLIER); uint256 burnPercentScaled = maxBurnPercentScaled.sub( burnPercentDiff.mul(burnPercentDiffDividendScaled.div(burnPercentDiffDivisor)) ); return _amount.mul(burnPercentScaled).div(BURN_PERCENT_SCALE.mul(100)); } function _setDefaultBuyTimestamp() internal { defaultBuyTimestamp = block.timestamp; } function _logBuy(address _recipient, uint256 _amount) internal { address[] memory nonLoggableRecipients = _getNonLoggableRecipients(); for (uint256 i = 0; i < nonLoggableRecipients.length; i++) { if (_recipient == nonLoggableRecipients[i]) { return; } } BuyLog[] storage recipientBuyLog = buyLogs[_recipient]; recipientBuyLog.push(BuyLog(_amount, block.timestamp)); emit BuyLogAdded(_recipient, block.timestamp, _amount); } function _getNonBurnableSenders() internal view virtual returns (address[] memory nonBurnableSenders) {} function _getNonBurnableRecipients() internal view virtual returns (address[] memory nonBurnableRecipients) {} function _getNonLoggableRecipients() internal view virtual returns (address[] memory nonLoggableRecipients) {} function _isWalletToWalletTransfer(address _sender, address _recipient) internal view virtual returns (bool isWalletToWalletTransfer) {} function _getListingPriceForBurnCalculation() internal view virtual returns (uint256 listingPrice) {} function _getTwapPriceForBurnCalculation() internal virtual returns (uint256 twapPrice) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@uniswap/lib/contracts/libraries/FixedPoint.sol"; import "./interfaces/IUniswapV2Oracle.sol"; contract UptownPandaTwapable { using FixedPoint for *; event TwapUpdated(uint256 newTwap, uint256 priceCumulative, uint32 blockTimestamp); uint256 public constant LISTING_PRICE_MULTIPLIER = 11; uint256 public constant TWAP_CALCULATION_INTERVAL = 10 minutes; bool private isListingTwapSet; bool private isInitialized; bool private isTokenToken0; // is our token first after sorting address private uniswapPair; IUniswapV2Oracle private oracle; uint32 public currentTwapTimestamp; uint256 public currentTwapPriceCumulative; uint256 public currentTwap; constructor() public { isListingTwapSet = false; isInitialized = false; } modifier initialized() { require(isInitialized, "TWAP data required for calculation has not been set yet."); _; } modifier listingTwapSet() { require(isListingTwapSet, "Listing TWAP has not been set yet."); _; } function _initializeTwap( bool _isTokenToken0, address _uniswapPair, address _oracle ) internal { isTokenToken0 = _isTokenToken0; uniswapPair = _uniswapPair; oracle = IUniswapV2Oracle(_oracle); isInitialized = true; } function _setListingTwap() internal { if (isListingTwapSet) { return; } (uint256 priceCumulative, uint32 timestamp) = _currentCumulativePrices(); _setTwapValuesAndTriggerUpdateEvent(_getListingPrice(), priceCumulative, timestamp); isListingTwapSet = true; } function _updateTwap() internal initialized listingTwapSet { (uint256 priceCumulative, uint32 timestamp) = _currentCumulativePrices(); uint32 timeElapsed = timestamp - currentTwapTimestamp; if (timeElapsed < TWAP_CALCULATION_INTERVAL) { return; } // cumulative price is in (uq112x112 price * seconds) units so we simply wrap it after division by time elapsed FixedPoint.uq112x112 memory newTwapAsFixedPoint = FixedPoint.uq112x112( uint224((priceCumulative - currentTwapPriceCumulative) / timeElapsed) ); uint144 newTwap = newTwapAsFixedPoint.mul(1 ether).decode144(); _setTwapValuesAndTriggerUpdateEvent(newTwap, priceCumulative, timestamp); } function _setTwapValuesAndTriggerUpdateEvent( uint256 _currentTwap, uint256 _currentTwapPriceCumulative, uint32 _currentTwapTimestamp ) private { currentTwap = _currentTwap; currentTwapPriceCumulative = _currentTwapPriceCumulative; currentTwapTimestamp = _currentTwapTimestamp; emit TwapUpdated(currentTwap, currentTwapPriceCumulative, currentTwapTimestamp); } function _currentCumulativePrices() private view returns (uint256 priceCumulative, uint32 timestamp) { (uint256 price0Cumulative, uint256 price1Cumulative, uint32 blockTimestamp) = oracle.currentCumulativePrices( uniswapPair ); priceCumulative = isTokenToken0 ? price1Cumulative : price0Cumulative; timestamp = blockTimestamp; } function _getListingPrice() internal pure returns (uint256) { return LISTING_PRICE_MULTIPLIER * 1 ether; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IUniswapV2Helper { function sortTokens(address tokenA, address tokenB) external pure returns (address token0, address token1); function pairFor(address tokenA, address tokenB) external view returns (address pair); function getFactoryAddress() external view returns (address factory); function getRouterAddress() external view returns (address router); function getUniswapV2OracleAddress() external view returns (address oracle); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IUniswapV2Oracle { function currentBlockTimestamp() external view returns (uint32); function currentCumulativePrices(address pair) external view returns ( uint256 price0Cumulative, uint256 price1Cumulative, uint32 blockTimestamp ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IUptownPanda is IERC20 { function mint(address _account, uint256 _amount) external; function isInitialized() external view returns (bool); function initialize( address _minter, address _weth, address _upFarm, address _upEthFarm, address _wethFarm, address _wbtcFarm ) external; function getMinter() external view returns (address); function unlock() external; function getListingPriceMultiplier() external view returns (uint256); function uniswapPair() external view returns (address); }
// SPDX-License-Identifier: MIT 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../GSN/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT 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) { 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT 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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ 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)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
pragma solidity >=0.4.0; // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) library FixedPoint { // range: [0, 2**112 - 1] // resolution: 1 / 2**112 struct uq112x112 { uint224 _x; } // range: [0, 2**144 - 1] // resolution: 1 / 2**112 struct uq144x112 { uint _x; } uint8 private constant RESOLUTION = 112; // encode a uint112 as a UQ112x112 function encode(uint112 x) internal pure returns (uq112x112 memory) { return uq112x112(uint224(x) << RESOLUTION); } // encodes a uint144 as a UQ144x112 function encode144(uint144 x) internal pure returns (uq144x112 memory) { return uq144x112(uint256(x) << RESOLUTION); } // divide a UQ112x112 by a uint112, returning a UQ112x112 function div(uq112x112 memory self, uint112 x) internal pure returns (uq112x112 memory) { require(x != 0, 'FixedPoint: DIV_BY_ZERO'); return uq112x112(self._x / uint224(x)); } // multiply a UQ112x112 by a uint, returning a UQ144x112 // reverts on overflow function mul(uq112x112 memory self, uint y) internal pure returns (uq144x112 memory) { uint z; require(y == 0 || (z = uint(self._x) * y) / y == uint(self._x), "FixedPoint: MULTIPLICATION_OVERFLOW"); return uq144x112(z); } // returns a UQ112x112 which represents the ratio of the numerator to the denominator // equivalent to encode(numerator).div(denominator) function fraction(uint112 numerator, uint112 denominator) internal pure returns (uq112x112 memory) { require(denominator > 0, "FixedPoint: DIV_BY_ZERO"); return uq112x112((uint224(numerator) << RESOLUTION) / denominator); } // decode a UQ112x112 into a uint112 by truncating after the radix point function decode(uq112x112 memory self) internal pure returns (uint112) { return uint112(self._x >> RESOLUTION); } // decode a UQ144x112 into a uint144 by truncating after the radix point function decode144(uq144x112 memory self) internal pure returns (uint144) { return uint144(self._x >> RESOLUTION); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": { "": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_uniswapV2HelperAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"uint256","name":"buyTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnAmount","type":"uint256"}],"name":"BurnAmountCalculated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyLogAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":false,"internalType":"uint256","name":"newTwap","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"priceCumulative","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"blockTimestamp","type":"uint32"}],"name":"TwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LISTING_PRICE_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BURN_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BURN_PRICE_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_BURN_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_BURN_PRICE_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_PENALTY_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TWAP_CALCULATION_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_TO_WALLET_BURN_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTwapPriceCumulative","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTwapTimestamp","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getListingPriceMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"address","name":"_weth","type":"address"},{"internalType":"address","name":"_upFarm","type":"address"},{"internalType":"address","name":"_upEthFarm","type":"address"},{"internalType":"address","name":"_wethFarm","type":"address"},{"internalType":"address","name":"_wbtcFarm","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2HelperAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upEthFarm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"upFarm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wbtcFarm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wethFarm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b50604051620058a3380380620058a3833981810160405260208110156200003757600080fd5b81019080805190602001909291905050506040518060400160405280600c81526020017f5570746f776e2050616e646100000000000000000000000000000000000000008152506040518060400160405280600381526020017f24555000000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc929190620004a8565b508060049080519060200190620000e5929190620004a8565b506012600560006101000a81548160ff021916908360ff16021790555050506000600760006101000a81548160ff0219169083151502179055506000600760016101000a81548160ff0219169083151502179055506000600760026101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050620001e76000801b620001db620001fe60201b60201c565b6200020660201b60201c565b620001f76200021c60201b60201c565b5062000557565b600033905090565b6200021882826200032f60201b60201c565b5050565b600760009054906101000a900460ff1615620002a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002ec620001fe60201b60201c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6200035e8160066000858152602001908152602001600020600001620003d360201b62003cca1790919060201c565b15620003cf5762000374620001fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000403836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200040b60201b60201c565b905092915050565b60006200041f83836200048560201b60201c565b6200047a5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200047f565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004eb57805160ff19168380011785556200051c565b828001600101855582156200051c579182015b828111156200051b578251825591602001919060010190620004fe565b5b5090506200052b91906200052f565b5090565b6200055491905b808211156200055057600081600090555060010162000536565b5090565b90565b60805160601c60a05160601c615313620005906000398061259752806126b052806127fc52806129125250806115fe52506153136000f3fe608060405234801561001057600080fd5b506004361061027e5760003560e01c8063735de9f71161015c578063a9059cbb116100ce578063cc2a9a5b11610087578063cc2a9a5b14610c55578063d539139314610d39578063d547741f14610d57578063dd62ed3e14610da5578063e64b1fb614610e1d578063f366751714610e3b5761027e565b8063a9059cbb14610b09578063b2c03b6a14610b6f578063b364659814610b8d578063c536b2b314610bab578063c816841b14610bc9578063ca15c87314610c135761027e565b80639010d07c116101205780639010d07c1461091a57806391d148541461099257806395d89b41146109f8578063a217fddf14610a7b578063a457c2d714610a99578063a69df4b514610aff5761027e565b8063735de9f714610858578063776f441d146108a25780637e7e683b146108c0578063853fa35e146108de57806388ef8f70146108fc5761027e565b806336568abe116101f557806342e323e8116101b957806342e323e8146106b65780635b4d16ed146107005780635c975abb1461074a57806363245b1b1461076c57806366ed7d6c146107b657806370a08231146108005761027e565b806336568abe14610548578063392e53cd1461059657806339509351146105b85780633a653aca1461061e57806340c10f19146106685761027e565b8063182a795411610247578063182a7954146103c657806319f62629146103f057806323b872dd1461040e578063248a9ca3146104945780632f2ff15d146104d6578063313ce567146105245761027e565b806286c8d3146102835780630336f60f146102a157806306fdde03146102bf578063095ea7b31461034257806318160ddd146103a8575b600080fd5b61028b610e85565b6040518082815260200191505060405180910390f35b6102a9610e8b565b6040518082815260200191505060405180910390f35b6102c7610e91565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103075780820151818401526020810190506102ec565b50505050905090810190601f1680156103345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61038e6004803603604081101561035857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f33565b604051808215151515815260200191505060405180910390f35b6103b0610f51565b6040518082815260200191505060405180910390f35b6103ce610f5b565b604051808263ffffffff1663ffffffff16815260200191505060405180910390f35b6103f8610f71565b6040518082815260200191505060405180910390f35b61047a6004803603606081101561042457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f76565b604051808215151515815260200191505060405180910390f35b6104c0600480360360208110156104aa57600080fd5b810190808035906020019092919050505061104f565b6040518082815260200191505060405180910390f35b610522600480360360408110156104ec57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061106f565b005b61052c6110f1565b604051808260ff1660ff16815260200191505060405180910390f35b6105946004803603604081101561055e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611108565b005b61059e61118a565b604051808215151515815260200191505060405180910390f35b610604600480360360408110156105ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611417565b604051808215151515815260200191505060405180910390f35b6106266114ca565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106b46004803603604081101561067e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114f0565b005b6106be611599565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107086115bf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107526115e5565b604051808215151515815260200191505060405180910390f35b6107746115fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107be611620565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108426004803603602081101561081657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611646565b6040518082815260200191505060405180910390f35b61086061168e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108aa6116b4565b6040518082815260200191505060405180910390f35b6108c86116b9565b6040518082815260200191505060405180910390f35b6108e66116be565b6040518082815260200191505060405180910390f35b6109046116c7565b6040518082815260200191505060405180910390f35b6109506004803603604081101561093057600080fd5b8101908080359060200190929190803590602001909291905050506116cd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109de600480360360408110156109a857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116ff565b604051808215151515815260200191505060405180910390f35b610a00611731565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a40578082015181840152602081019050610a25565b50505050905090810190601f168015610a6d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a836117d3565b6040518082815260200191505060405180910390f35b610ae560048036036040811015610aaf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117da565b604051808215151515815260200191505060405180910390f35b610b076118a7565b005b610b5560048036036040811015610b1f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611923565b604051808215151515815260200191505060405180910390f35b610b77611941565b6040518082815260200191505060405180910390f35b610b95611946565b6040518082815260200191505060405180910390f35b610bb361194b565b6040518082815260200191505060405180910390f35b610bd1611951565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c3f60048036036020811015610c2957600080fd5b8101908080359060200190929190505050611977565b6040518082815260200191505060405180910390f35b610d37600480360360c0811015610c6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061199e565b005b610d41611aba565b6040518082815260200191505060405180910390f35b610da360048036036040811015610d6d57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611af3565b005b610e0760048036036040811015610dbb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b75565b6040518082815260200191505060405180910390f35b610e25611bfc565b6040518082815260200191505060405180910390f35b610e43611c01565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600a5481565b60095481565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f295780601f10610efe57610100808354040283529160200191610f29565b820191906000526020600020905b815481529060010190602001808311610f0c57829003601f168201915b5050505050905090565b6000610f47610f40611cfb565b8484611d03565b6001905092915050565b6000600254905090565b600860149054906101000a900463ffffffff1681565b601e81565b6000610f83848484611efa565b61104484610f8f611cfb565b61103f856040518060600160405280602881526020016151b460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ff5611cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f869092919063ffffffff16565b611d03565b600190509392505050565b600060066000838152602001908152602001600020600201549050919050565b60006110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4e6f206772616e74696e6720616c6c6f7765642c2062726f210000000000000081525060200191505060405180910390fd5b6110ed8282612046565b5050565b6000600560009054906101000a900460ff16905090565b600061117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4e6f2072656e6f756e63696e6720616c6c6f7765642c2062726f21000000000081525060200191505060405180910390fd5b61118682826120d0565b5050565b60008060016111cd60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020611977565b14905060008073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141590508680156113de5750855b80156113e75750845b80156113f05750835b80156113f95750825b80156114025750815b801561140b5750805b97505050505050505090565b60006114c0611424611cfb565b846114bb8560016000611435611cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216990919063ffffffff16565b611d03565b6001905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61153660405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020611531611cfb565b6116ff565b61158b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151dc6021913960400191505060405180910390fd5b61159582826121f1565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a81565b600b81565b6000600b905090565b61012c81565b60006116f782600660008681526020019081526020016000206000016123b890919063ffffffff16565b905092915050565b600061172982600660008681526020019081526020016000206000016123d290919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117c95780601f1061179e576101008083540402835291602001916117c9565b820191906000526020600020905b8154815290600101906020018083116117ac57829003601f168201915b5050505050905090565b6000801b81565b600061189d6117e7611cfb565b846118988560405180606001604052806025815260200161528a6025913960016000611811611cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f869092919063ffffffff16565b611d03565b6001905092915050565b6118b46000801b326116ff565b611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151446029913960400191505060405180910390fd5b611911612402565b61191961250b565b611921612566565b565b6000611937611930611cfb565b8484611efa565b6001905092915050565b600581565b600581565b61025881565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006119976006600084815260200190815260200160002060000161256f565b9050919050565b6119ab6000801b326116ff565b611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151446029913960400191505060405180910390fd5b611a0861118a565b15611a5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061518e6026913960400191505060405180910390fd5b611a9d60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902087612584565b611aa685612592565b611ab2848484846129e7565b505050505050565b60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902081565b6000611b67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4e6f207265766f6b696e6720616c6c6f7765642c2062726f210000000000000081525060200191505060405180910390fd5b611b718282612af1565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600381565b60006001611c4360405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020611977565b14611cb6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4d696e746572206973206e6f74207365742e000000000000000000000000000081525060200191505060405180910390fd5b611cf660405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902060006116cd565b905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152666024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150726022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6060611f07848484612b7b565b905060008090505b8151811015611f6a57611f3585838381518110611f2857fe5b6020026020010151612bee565b611f5b828281518110611f4457fe5b602002602001015184612db290919063ffffffff16565b92508080600101915050611f0f565b50611f758383612dfc565b611f80848484612f61565b50505050565b6000838311158290612033576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ff8578082015181840152602081019050611fdd565b50505050905090810190601f1680156120255780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61206d6006600084815260200190815260200160002060020154612068611cfb565b6116ff565b6120c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615021602f913960400191505060405180910390fd5b6120cc8282613222565b5050565b6120d8611cfb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806152af602f913960400191505060405180910390fd5b61216582826132b6565b5050565b6000808284019050838110156121e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6122a06000838361334a565b6122b58160025461216990919063ffffffff16565b60028190555061230c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60006123c78360000183613463565b60001c905092915050565b60006123fa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6134e6565b905092915050565b600760009054906101000a900460ff16612484576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124c8611cfb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600760019054906101000a900460ff161561252557612564565b600080612530613509565b9150915061254661253f61364f565b8383613662565b6001600760016101000a81548160ff02191690831515021790555050505b565b42600b81905550565b600061257d826000016136ff565b9050919050565b61258e8282613222565b5050565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663544caa5630856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050604080518083038186803b15801561266557600080fd5b505afa158015612679573d6000803e3d6000fd5b505050506040513d604081101561268f57600080fd5b810190808051906020019092919080519060200190929190505050915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166396ed28f983836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561277f57600080fd5b505afa158015612793573d6000803e3d6000fd5b505050506040513d60208110156127a957600080fd5b8101908080519060200190929190505050600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d54f7d5e6040518163ffffffff1660e01b815260040160206040518083038186803b15801561286057600080fd5b505afa158015612874573d6000803e3d6000fd5b505050506040513d602081101561288a57600080fd5b8101908080519060200190929190505050600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d1ec7af36040518163ffffffff1660e01b815260040160206040518083038186803b15801561297657600080fd5b505afa15801561298a573d6000803e3d6000fd5b505050506040513d60208110156129a057600080fd5b810190808051906020019092919050505090506129e082600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613710565b5050505050565b83601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b612b186006600084815260200190815260200160002060020154612b13611cfb565b6116ff565b612b6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806150ba6030913960400191505060405180910390fd5b612b7782826132b6565b5050565b6060612b888484846137cc565b612bd957600067ffffffffffffffff81118015612ba457600080fd5b50604051908082528060200260200182016040528015612bd35781602001602082028036833780820191505090505b50612be5565b612be48484846138e4565b5b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151fd6021913960400191505060405180910390fd5b612c808260008361334a565b612ceb81604051806060016040528060228152602001615050602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f869092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d4281600254612db290919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612df483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f86565b905092915050565b6060612e06613a69565b905060008090505b8151811015612e7257818181518110612e2357fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e65575050612f5d565b8080600101915050612e0e565b506000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905080604051806040016040528085815260200142815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050428473ffffffffffffffffffffffffffffffffffffffff167f67fa9392b5334e83f3ae96ccb09254fb97c2db68d44ac88586fb9665234a36a2856040518082815260200191505060405180910390a350505b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fe7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061521e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561306d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ffe6023913960400191505060405180910390fd5b61307883838361334a565b6130e381604051806060016040528060268152602001615094602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f869092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613176816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b61324a8160066000858152602001908152602001600020600001613cca90919063ffffffff16565b156132b257613257611cfb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6132de8160066000858152602001908152602001600020600001613cfa90919063ffffffff16565b15613346576132eb611cfb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b826000613355611c01565b905060008173ffffffffffffffffffffffffffffffffffffffff16613378611cfb565b73ffffffffffffffffffffffffffffffffffffffff1614905060008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490506133cc6115e5565b15806133d55750815b806133dd5750805b61344f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f546f6b656e207472616e73666572206e6f7420616c6c6f7765642e000000000081525060200191505060405180910390fd5b61345a878787613d2a565b50505050505050565b6000818360000180549050116134c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614fdc6022913960400191505060405180910390fd5b8260000182815481106134d357fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633f14dccd600760049054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060606040518083038186803b1580156135d257600080fd5b505afa1580156135e6573d6000803e3d6000fd5b505050506040513d60608110156135fc57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050925092509250600760039054906101000a900460ff166136415782613643565b815b94508093505050509091565b6000670de0b6b3a7640000600b02905090565b82600a819055508160098190555080600860146101000a81548163ffffffff021916908363ffffffff1602179055507fedbc59e4bc71640b7b10a0bb439488b3969ee163d4f3644bac0758ebfdc76569600a54600954600860149054906101000a900463ffffffff16604051808481526020018381526020018263ffffffff1663ffffffff168152602001935050505060405180910390a1505050565b600081600001805490509050919050565b82600760036101000a81548160ff02191690831515021790555081600760046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760026101000a81548160ff021916908315150217905550505050565b6000808214156137df57600090506138dd565b60606137e9613d2f565b905060008090505b81518110156138595781818151811061380657fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561384c576000925050506138dd565b80806001019150506137f1565b506060613864614049565b905060008090505b81518110156138d55781818151811061388157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156138c857600093505050506138dd565b808060010191505061386c565b506001925050505b9392505050565b6060806138f18584614240565b90506060815167ffffffffffffffff8111801561390d57600080fd5b5060405190808252806020026020018201604052801561393c5781602001602082028036833780820191505090505b50905060008090505b8251811015613a5c57613988878785848151811061395f57fe5b60200260200101516000015186858151811061397757fe5b602002602001015160200151614561565b82828151811061399457fe5b6020026020010181815250508281815181106139ac57fe5b6020026020010151602001518673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fafc405b910440dc1c59e5233446de516e268c10d66c10bba9cbd24dfe63419bd868581518110613a1357fe5b602002602001015160000151868681518110613a2b57fe5b6020026020010151604051808381526020018281526020019250505060405180910390a48080600101915050613945565b5080925050509392505050565b6060600567ffffffffffffffff81118015613a8357600080fd5b50604051908082528060200260200182016040528015613ab25781602001602082028036833780820191505090505b509050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110613ae557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110613b4f57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600281518110613bb957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600381518110613c2357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600481518110613c8d57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6000613cf2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6147dc565b905092915050565b6000613d22836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61484c565b905092915050565b505050565b6060600767ffffffffffffffff81118015613d4957600080fd5b50604051908082528060200260200182016040528015613d785781602001602082028036833780820191505090505b509050613d83611c01565b81600081518110613d9057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110613dfa57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600281518110613e6457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600381518110613ece57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600481518110613f3857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600581518110613fa257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160068151811061400c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6060600467ffffffffffffffff8111801561406357600080fd5b506040519080825280602002602001820160405280156140925781602001602082028036833780820191505090505b509050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106140c557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061412f57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160028151811061419957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160038151811061420357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6060600061424e8484614934565b90506000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060608367ffffffffffffffff811180156142f057600080fd5b5060405190808252806020026020018201604052801561432a57816020015b614317614f7d565b81526020019060019003908161430f5790505b509050600086905060008090505b85811015614552576000818601905084805490508110614389576040518060400160405280848152602001600b5481525084600189038151811061437857fe5b602002602001018190525050614552565b600085828154811061439757fe5b9060005260206000209060020201600001548410156143b657836143d5565b8582815481106143c257fe5b9060005260206000209060020201600001545b905060405180604001604052808281526020018784815481106143f457fe5b90600052602060002090600202016001015481525085848151811061441557fe5b60200260200101819052506144338185612db290919063ffffffff16565b93506144658187848154811061444557fe5b906000526020600020906002020160000154612db290919063ffffffff16565b86838154811061447157fe5b906000526020600020906002020160000181905550600086838154811061449457fe5b9060005260206000209060020201600001541415614543576144ff6001600d60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216990919063ffffffff16565b600d60008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50508080600101915050614338565b50819550505050505092915050565b60008061012c61457a8442612db290919063ffffffff16565b10905080156145b2576145aa606461459c601e87614a8390919063ffffffff16565b614b0990919063ffffffff16565b9150506147d4565b6145bc8686614b53565b156145f0576145e860646145da600587614a8390919063ffffffff16565b614b0990919063ffffffff16565b9150506147d4565b60006145fa614c09565b90506000614606614c18565b9050600061463382614625633b9aca0086614a8390919063ffffffff16565b614b0990919063ffffffff16565b905061464d633b9aca006003614a8390919063ffffffff16565b81116146855761467a606461466c601e8a614a8390919063ffffffff16565b614b0990919063ffffffff16565b9450505050506147d4565b61469d633b9aca00600a614a8390919063ffffffff16565b81106146d5576146ca60646146bc60058a614a8390919063ffffffff16565b614b0990919063ffffffff16565b9450505050506147d4565b60006146ef633b9aca00601e614a8390919063ffffffff16565b905060006147086005601e612db290919063ffffffff16565b90506000614736614727633b9aca006003614a8390919063ffffffff16565b85612db290919063ffffffff16565b9050600061474f6003600a612db290919063ffffffff16565b9050600061478a61477b61476c8486614b0990919063ffffffff16565b86614a8390919063ffffffff16565b86612db290919063ffffffff16565b90506147c86147a76064633b9aca00614a8390919063ffffffff16565b6147ba838f614a8390919063ffffffff16565b614b0990919063ffffffff16565b99505050505050505050505b949350505050565b60006147e883836134e6565b614841578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614846565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114614928576000600182039050600060018660000180549050039050600086600001828154811061489757fe5b90600052602060002001549050808760000184815481106148b457fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806148ec57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061492e565b60009150505b92915050565b600080600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600080905060008490506000600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b8380549050811015614a545760008214156149e157614a54565b818482815481106149ee57fe5b90600052602060002090600202016000015411614a3a57614a35848281548110614a1457fe5b90600052602060002090600202016000015483612db290919063ffffffff16565b614a3d565b60005b9150828060010193505080806001019150506149c7565b5060008111614a635781614a78565b614a7760018361216990919063ffffffff16565b5b935050505092915050565b600080831415614a965760009050614b03565b6000828402905082848281614aa757fe5b0414614afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061516d6021913960400191505060405180910390fd5b809150505b92915050565b6000614b4b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614c2a565b905092915050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015614c015750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b905092915050565b6000614c1361364f565b905090565b6000614c22614cf0565b600a54905090565b60008083118290614cd6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614c9b578082015181840152602081019050614c80565b50505050905090810190601f168015614cc85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614ce257fe5b049050809150509392505050565b600760029054906101000a900460ff16614d55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806150ea6038913960400191505060405180910390fd5b600760019054906101000a900460ff16614dba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151226022913960400191505060405180910390fd5b600080614dc5613509565b915091506000600860149054906101000a900463ffffffff16820390506102588163ffffffff161015614dfa57505050614e90565b614e02614f97565b60405180602001604052808363ffffffff16600954870381614e2057fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090506000614e69614e64670de0b6b3a764000084614e9290919063ffffffff16565b614f68565b9050614e8a8171ffffffffffffffffffffffffffffffffffff168686613662565b50505050505b565b614e9a614fc8565b600080831480614efb575083600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16838486600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160292508281614ef857fe5b04145b614f50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806152436023913960400191505060405180910390fd5b60405180602001604052808281525091505092915050565b6000607060ff168260000151901c9050919050565b604051806040016040528060008152602001600081525090565b604051806020016040528060007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b604051806020016040528060008152509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6554574150206461746120726571756972656420666f722063616c63756c6174696f6e20686173206e6f74206265656e20736574207965742e4c697374696e67205457415020686173206e6f74206265656e20736574207965742e4f726967696e616c2073656e64657220646f6573206e6f7420686176652061646d696e20726f6c652e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436f6e74726163742068617320616c7265616479206265656e20696e697469616c697a65642e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636553656e64657220646f6573206e6f742068617665206d696e74657220726f6c652e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552464c4f5745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212209723d832cfd3f047628c0196de3cfe3f3e4dd52596611bc683636742d7db4dec64736f6c634300060600330000000000000000000000005cdf8d8cbcff0ad458efed22a7451b69baa0e8b6
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061027e5760003560e01c8063735de9f71161015c578063a9059cbb116100ce578063cc2a9a5b11610087578063cc2a9a5b14610c55578063d539139314610d39578063d547741f14610d57578063dd62ed3e14610da5578063e64b1fb614610e1d578063f366751714610e3b5761027e565b8063a9059cbb14610b09578063b2c03b6a14610b6f578063b364659814610b8d578063c536b2b314610bab578063c816841b14610bc9578063ca15c87314610c135761027e565b80639010d07c116101205780639010d07c1461091a57806391d148541461099257806395d89b41146109f8578063a217fddf14610a7b578063a457c2d714610a99578063a69df4b514610aff5761027e565b8063735de9f714610858578063776f441d146108a25780637e7e683b146108c0578063853fa35e146108de57806388ef8f70146108fc5761027e565b806336568abe116101f557806342e323e8116101b957806342e323e8146106b65780635b4d16ed146107005780635c975abb1461074a57806363245b1b1461076c57806366ed7d6c146107b657806370a08231146108005761027e565b806336568abe14610548578063392e53cd1461059657806339509351146105b85780633a653aca1461061e57806340c10f19146106685761027e565b8063182a795411610247578063182a7954146103c657806319f62629146103f057806323b872dd1461040e578063248a9ca3146104945780632f2ff15d146104d6578063313ce567146105245761027e565b806286c8d3146102835780630336f60f146102a157806306fdde03146102bf578063095ea7b31461034257806318160ddd146103a8575b600080fd5b61028b610e85565b6040518082815260200191505060405180910390f35b6102a9610e8b565b6040518082815260200191505060405180910390f35b6102c7610e91565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103075780820151818401526020810190506102ec565b50505050905090810190601f1680156103345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61038e6004803603604081101561035857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f33565b604051808215151515815260200191505060405180910390f35b6103b0610f51565b6040518082815260200191505060405180910390f35b6103ce610f5b565b604051808263ffffffff1663ffffffff16815260200191505060405180910390f35b6103f8610f71565b6040518082815260200191505060405180910390f35b61047a6004803603606081101561042457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f76565b604051808215151515815260200191505060405180910390f35b6104c0600480360360208110156104aa57600080fd5b810190808035906020019092919050505061104f565b6040518082815260200191505060405180910390f35b610522600480360360408110156104ec57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061106f565b005b61052c6110f1565b604051808260ff1660ff16815260200191505060405180910390f35b6105946004803603604081101561055e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611108565b005b61059e61118a565b604051808215151515815260200191505060405180910390f35b610604600480360360408110156105ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611417565b604051808215151515815260200191505060405180910390f35b6106266114ca565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106b46004803603604081101561067e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114f0565b005b6106be611599565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107086115bf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107526115e5565b604051808215151515815260200191505060405180910390f35b6107746115fc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107be611620565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108426004803603602081101561081657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611646565b6040518082815260200191505060405180910390f35b61086061168e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108aa6116b4565b6040518082815260200191505060405180910390f35b6108c86116b9565b6040518082815260200191505060405180910390f35b6108e66116be565b6040518082815260200191505060405180910390f35b6109046116c7565b6040518082815260200191505060405180910390f35b6109506004803603604081101561093057600080fd5b8101908080359060200190929190803590602001909291905050506116cd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109de600480360360408110156109a857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116ff565b604051808215151515815260200191505060405180910390f35b610a00611731565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a40578082015181840152602081019050610a25565b50505050905090810190601f168015610a6d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a836117d3565b6040518082815260200191505060405180910390f35b610ae560048036036040811015610aaf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117da565b604051808215151515815260200191505060405180910390f35b610b076118a7565b005b610b5560048036036040811015610b1f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611923565b604051808215151515815260200191505060405180910390f35b610b77611941565b6040518082815260200191505060405180910390f35b610b95611946565b6040518082815260200191505060405180910390f35b610bb361194b565b6040518082815260200191505060405180910390f35b610bd1611951565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c3f60048036036020811015610c2957600080fd5b8101908080359060200190929190505050611977565b6040518082815260200191505060405180910390f35b610d37600480360360c0811015610c6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061199e565b005b610d41611aba565b6040518082815260200191505060405180910390f35b610da360048036036040811015610d6d57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611af3565b005b610e0760048036036040811015610dbb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b75565b6040518082815260200191505060405180910390f35b610e25611bfc565b6040518082815260200191505060405180910390f35b610e43611c01565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b600a5481565b60095481565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f295780601f10610efe57610100808354040283529160200191610f29565b820191906000526020600020905b815481529060010190602001808311610f0c57829003601f168201915b5050505050905090565b6000610f47610f40611cfb565b8484611d03565b6001905092915050565b6000600254905090565b600860149054906101000a900463ffffffff1681565b601e81565b6000610f83848484611efa565b61104484610f8f611cfb565b61103f856040518060600160405280602881526020016151b460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ff5611cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f869092919063ffffffff16565b611d03565b600190509392505050565b600060066000838152602001908152602001600020600201549050919050565b60006110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4e6f206772616e74696e6720616c6c6f7765642c2062726f210000000000000081525060200191505060405180910390fd5b6110ed8282612046565b5050565b6000600560009054906101000a900460ff16905090565b600061117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4e6f2072656e6f756e63696e6720616c6c6f7765642c2062726f21000000000081525060200191505060405180910390fd5b61118682826120d0565b5050565b60008060016111cd60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020611977565b14905060008073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415905060008073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141590508680156113de5750855b80156113e75750845b80156113f05750835b80156113f95750825b80156114025750815b801561140b5750805b97505050505050505090565b60006114c0611424611cfb565b846114bb8560016000611435611cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216990919063ffffffff16565b611d03565b6001905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61153660405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020611531611cfb565b6116ff565b61158b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151dc6021913960400191505060405180910390fd5b61159582826121f1565b5050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900460ff16905090565b7f0000000000000000000000005cdf8d8cbcff0ad458efed22a7451b69baa0e8b681565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a81565b600b81565b6000600b905090565b61012c81565b60006116f782600660008681526020019081526020016000206000016123b890919063ffffffff16565b905092915050565b600061172982600660008681526020019081526020016000206000016123d290919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117c95780601f1061179e576101008083540402835291602001916117c9565b820191906000526020600020905b8154815290600101906020018083116117ac57829003601f168201915b5050505050905090565b6000801b81565b600061189d6117e7611cfb565b846118988560405180606001604052806025815260200161528a6025913960016000611811611cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f869092919063ffffffff16565b611d03565b6001905092915050565b6118b46000801b326116ff565b611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151446029913960400191505060405180910390fd5b611911612402565b61191961250b565b611921612566565b565b6000611937611930611cfb565b8484611efa565b6001905092915050565b600581565b600581565b61025881565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006119976006600084815260200190815260200160002060000161256f565b9050919050565b6119ab6000801b326116ff565b611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151446029913960400191505060405180910390fd5b611a0861118a565b15611a5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061518e6026913960400191505060405180910390fd5b611a9d60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902087612584565b611aa685612592565b611ab2848484846129e7565b505050505050565b60405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902081565b6000611b67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4e6f207265766f6b696e6720616c6c6f7765642c2062726f210000000000000081525060200191505060405180910390fd5b611b718282612af1565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600381565b60006001611c4360405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b0190506040518091039020611977565b14611cb6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4d696e746572206973206e6f74207365742e000000000000000000000000000081525060200191505060405180910390fd5b611cf660405180807f4d494e5445525f524f4c45000000000000000000000000000000000000000000815250600b019050604051809103902060006116cd565b905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152666024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150726022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6060611f07848484612b7b565b905060008090505b8151811015611f6a57611f3585838381518110611f2857fe5b6020026020010151612bee565b611f5b828281518110611f4457fe5b602002602001015184612db290919063ffffffff16565b92508080600101915050611f0f565b50611f758383612dfc565b611f80848484612f61565b50505050565b6000838311158290612033576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ff8578082015181840152602081019050611fdd565b50505050905090810190601f1680156120255780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61206d6006600084815260200190815260200160002060020154612068611cfb565b6116ff565b6120c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615021602f913960400191505060405180910390fd5b6120cc8282613222565b5050565b6120d8611cfb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806152af602f913960400191505060405180910390fd5b61216582826132b6565b5050565b6000808284019050838110156121e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6122a06000838361334a565b6122b58160025461216990919063ffffffff16565b60028190555061230c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60006123c78360000183613463565b60001c905092915050565b60006123fa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6134e6565b905092915050565b600760009054906101000a900460ff16612484576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124c8611cfb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600760019054906101000a900460ff161561252557612564565b600080612530613509565b9150915061254661253f61364f565b8383613662565b6001600760016101000a81548160ff02191690831515021790555050505b565b42600b81905550565b600061257d826000016136ff565b9050919050565b61258e8282613222565b5050565b6000807f0000000000000000000000005cdf8d8cbcff0ad458efed22a7451b69baa0e8b673ffffffffffffffffffffffffffffffffffffffff1663544caa5630856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200192505050604080518083038186803b15801561266557600080fd5b505afa158015612679573d6000803e3d6000fd5b505050506040513d604081101561268f57600080fd5b810190808051906020019092919080519060200190929190505050915091507f0000000000000000000000005cdf8d8cbcff0ad458efed22a7451b69baa0e8b673ffffffffffffffffffffffffffffffffffffffff166396ed28f983836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561277f57600080fd5b505afa158015612793573d6000803e3d6000fd5b505050506040513d60208110156127a957600080fd5b8101908080519060200190929190505050600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f0000000000000000000000005cdf8d8cbcff0ad458efed22a7451b69baa0e8b673ffffffffffffffffffffffffffffffffffffffff1663d54f7d5e6040518163ffffffff1660e01b815260040160206040518083038186803b15801561286057600080fd5b505afa158015612874573d6000803e3d6000fd5b505050506040513d602081101561288a57600080fd5b8101908080519060200190929190505050600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614905060007f0000000000000000000000005cdf8d8cbcff0ad458efed22a7451b69baa0e8b673ffffffffffffffffffffffffffffffffffffffff1663d1ec7af36040518163ffffffff1660e01b815260040160206040518083038186803b15801561297657600080fd5b505afa15801561298a573d6000803e3d6000fd5b505050506040513d60208110156129a057600080fd5b810190808051906020019092919050505090506129e082600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613710565b5050505050565b83601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b612b186006600084815260200190815260200160002060020154612b13611cfb565b6116ff565b612b6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806150ba6030913960400191505060405180910390fd5b612b7782826132b6565b5050565b6060612b888484846137cc565b612bd957600067ffffffffffffffff81118015612ba457600080fd5b50604051908082528060200260200182016040528015612bd35781602001602082028036833780820191505090505b50612be5565b612be48484846138e4565b5b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151fd6021913960400191505060405180910390fd5b612c808260008361334a565b612ceb81604051806060016040528060228152602001615050602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f869092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d4281600254612db290919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612df483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f86565b905092915050565b6060612e06613a69565b905060008090505b8151811015612e7257818181518110612e2357fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e65575050612f5d565b8080600101915050612e0e565b506000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905080604051806040016040528085815260200142815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050428473ffffffffffffffffffffffffffffffffffffffff167f67fa9392b5334e83f3ae96ccb09254fb97c2db68d44ac88586fb9665234a36a2856040518082815260200191505060405180910390a350505b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fe7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061521e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561306d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ffe6023913960400191505060405180910390fd5b61307883838361334a565b6130e381604051806060016040528060268152602001615094602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f869092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613176816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b61324a8160066000858152602001908152602001600020600001613cca90919063ffffffff16565b156132b257613257611cfb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6132de8160066000858152602001908152602001600020600001613cfa90919063ffffffff16565b15613346576132eb611cfb565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b826000613355611c01565b905060008173ffffffffffffffffffffffffffffffffffffffff16613378611cfb565b73ffffffffffffffffffffffffffffffffffffffff1614905060008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490506133cc6115e5565b15806133d55750815b806133dd5750805b61344f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f546f6b656e207472616e73666572206e6f7420616c6c6f7765642e000000000081525060200191505060405180910390fd5b61345a878787613d2a565b50505050505050565b6000818360000180549050116134c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614fdc6022913960400191505060405180910390fd5b8260000182815481106134d357fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633f14dccd600760049054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060606040518083038186803b1580156135d257600080fd5b505afa1580156135e6573d6000803e3d6000fd5b505050506040513d60608110156135fc57600080fd5b81019080805190602001909291908051906020019092919080519060200190929190505050925092509250600760039054906101000a900460ff166136415782613643565b815b94508093505050509091565b6000670de0b6b3a7640000600b02905090565b82600a819055508160098190555080600860146101000a81548163ffffffff021916908363ffffffff1602179055507fedbc59e4bc71640b7b10a0bb439488b3969ee163d4f3644bac0758ebfdc76569600a54600954600860149054906101000a900463ffffffff16604051808481526020018381526020018263ffffffff1663ffffffff168152602001935050505060405180910390a1505050565b600081600001805490509050919050565b82600760036101000a81548160ff02191690831515021790555081600760046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760026101000a81548160ff021916908315150217905550505050565b6000808214156137df57600090506138dd565b60606137e9613d2f565b905060008090505b81518110156138595781818151811061380657fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561384c576000925050506138dd565b80806001019150506137f1565b506060613864614049565b905060008090505b81518110156138d55781818151811061388157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156138c857600093505050506138dd565b808060010191505061386c565b506001925050505b9392505050565b6060806138f18584614240565b90506060815167ffffffffffffffff8111801561390d57600080fd5b5060405190808252806020026020018201604052801561393c5781602001602082028036833780820191505090505b50905060008090505b8251811015613a5c57613988878785848151811061395f57fe5b60200260200101516000015186858151811061397757fe5b602002602001015160200151614561565b82828151811061399457fe5b6020026020010181815250508281815181106139ac57fe5b6020026020010151602001518673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fafc405b910440dc1c59e5233446de516e268c10d66c10bba9cbd24dfe63419bd868581518110613a1357fe5b602002602001015160000151868681518110613a2b57fe5b6020026020010151604051808381526020018281526020019250505060405180910390a48080600101915050613945565b5080925050509392505050565b6060600567ffffffffffffffff81118015613a8357600080fd5b50604051908082528060200260200182016040528015613ab25781602001602082028036833780820191505090505b509050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110613ae557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110613b4f57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600281518110613bb957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600381518110613c2357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600481518110613c8d57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6000613cf2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6147dc565b905092915050565b6000613d22836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61484c565b905092915050565b505050565b6060600767ffffffffffffffff81118015613d4957600080fd5b50604051908082528060200260200182016040528015613d785781602001602082028036833780820191505090505b509050613d83611c01565b81600081518110613d9057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110613dfa57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600281518110613e6457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600381518110613ece57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600481518110613f3857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600581518110613fa257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160068151811061400c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6060600467ffffffffffffffff8111801561406357600080fd5b506040519080825280602002602001820160405280156140925781602001602082028036833780820191505090505b509050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106140c557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061412f57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160028151811061419957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160038151811061420357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6060600061424e8484614934565b90506000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060608367ffffffffffffffff811180156142f057600080fd5b5060405190808252806020026020018201604052801561432a57816020015b614317614f7d565b81526020019060019003908161430f5790505b509050600086905060008090505b85811015614552576000818601905084805490508110614389576040518060400160405280848152602001600b5481525084600189038151811061437857fe5b602002602001018190525050614552565b600085828154811061439757fe5b9060005260206000209060020201600001548410156143b657836143d5565b8582815481106143c257fe5b9060005260206000209060020201600001545b905060405180604001604052808281526020018784815481106143f457fe5b90600052602060002090600202016001015481525085848151811061441557fe5b60200260200101819052506144338185612db290919063ffffffff16565b93506144658187848154811061444557fe5b906000526020600020906002020160000154612db290919063ffffffff16565b86838154811061447157fe5b906000526020600020906002020160000181905550600086838154811061449457fe5b9060005260206000209060020201600001541415614543576144ff6001600d60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461216990919063ffffffff16565b600d60008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50508080600101915050614338565b50819550505050505092915050565b60008061012c61457a8442612db290919063ffffffff16565b10905080156145b2576145aa606461459c601e87614a8390919063ffffffff16565b614b0990919063ffffffff16565b9150506147d4565b6145bc8686614b53565b156145f0576145e860646145da600587614a8390919063ffffffff16565b614b0990919063ffffffff16565b9150506147d4565b60006145fa614c09565b90506000614606614c18565b9050600061463382614625633b9aca0086614a8390919063ffffffff16565b614b0990919063ffffffff16565b905061464d633b9aca006003614a8390919063ffffffff16565b81116146855761467a606461466c601e8a614a8390919063ffffffff16565b614b0990919063ffffffff16565b9450505050506147d4565b61469d633b9aca00600a614a8390919063ffffffff16565b81106146d5576146ca60646146bc60058a614a8390919063ffffffff16565b614b0990919063ffffffff16565b9450505050506147d4565b60006146ef633b9aca00601e614a8390919063ffffffff16565b905060006147086005601e612db290919063ffffffff16565b90506000614736614727633b9aca006003614a8390919063ffffffff16565b85612db290919063ffffffff16565b9050600061474f6003600a612db290919063ffffffff16565b9050600061478a61477b61476c8486614b0990919063ffffffff16565b86614a8390919063ffffffff16565b86612db290919063ffffffff16565b90506147c86147a76064633b9aca00614a8390919063ffffffff16565b6147ba838f614a8390919063ffffffff16565b614b0990919063ffffffff16565b99505050505050505050505b949350505050565b60006147e883836134e6565b614841578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614846565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114614928576000600182039050600060018660000180549050039050600086600001828154811061489757fe5b90600052602060002001549050808760000184815481106148b457fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806148ec57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061492e565b60009150505b92915050565b600080600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600080905060008490506000600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b8380549050811015614a545760008214156149e157614a54565b818482815481106149ee57fe5b90600052602060002090600202016000015411614a3a57614a35848281548110614a1457fe5b90600052602060002090600202016000015483612db290919063ffffffff16565b614a3d565b60005b9150828060010193505080806001019150506149c7565b5060008111614a635781614a78565b614a7760018361216990919063ffffffff16565b5b935050505092915050565b600080831415614a965760009050614b03565b6000828402905082848281614aa757fe5b0414614afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061516d6021913960400191505060405180910390fd5b809150505b92915050565b6000614b4b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614c2a565b905092915050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015614c015750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b905092915050565b6000614c1361364f565b905090565b6000614c22614cf0565b600a54905090565b60008083118290614cd6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614c9b578082015181840152602081019050614c80565b50505050905090810190601f168015614cc85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614ce257fe5b049050809150509392505050565b600760029054906101000a900460ff16614d55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806150ea6038913960400191505060405180910390fd5b600760019054906101000a900460ff16614dba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151226022913960400191505060405180910390fd5b600080614dc5613509565b915091506000600860149054906101000a900463ffffffff16820390506102588163ffffffff161015614dfa57505050614e90565b614e02614f97565b60405180602001604052808363ffffffff16600954870381614e2057fe5b047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090506000614e69614e64670de0b6b3a764000084614e9290919063ffffffff16565b614f68565b9050614e8a8171ffffffffffffffffffffffffffffffffffff168686613662565b50505050505b565b614e9a614fc8565b600080831480614efb575083600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16838486600001517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160292508281614ef857fe5b04145b614f50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806152436023913960400191505060405180910390fd5b60405180602001604052808281525091505092915050565b6000607060ff168260000151901c9050919050565b604051806040016040528060008152602001600081525090565b604051806020016040528060007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b604051806020016040528060008152509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6554574150206461746120726571756972656420666f722063616c63756c6174696f6e20686173206e6f74206265656e20736574207965742e4c697374696e67205457415020686173206e6f74206265656e20736574207965742e4f726967696e616c2073656e64657220646f6573206e6f7420686176652061646d696e20726f6c652e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436f6e74726163742068617320616c7265616479206265656e20696e697469616c697a65642e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636553656e64657220646f6573206e6f742068617665206d696e74657220726f6c652e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734669786564506f696e743a204d554c5449504c49434154494f4e5f4f564552464c4f5745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212209723d832cfd3f047628c0196de3cfe3f3e4dd52596611bc683636742d7db4dec64736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005cdf8d8cbcff0ad458efed22a7451b69baa0e8b6
-----Decoded View---------------
Arg [0] : _uniswapV2HelperAddress (address): 0x5CdF8D8CbCFf0AD458efed22A7451b69bAa0e8B6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005cdf8d8cbcff0ad458efed22a7451b69baa0e8b6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.