More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 262 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 327528876 | 5 days ago | IN | 0 ETH | 0.00000164 | ||||
Set Dev | 319357820 | 29 days ago | IN | 0 ETH | 0.00000031 | ||||
Withdraw | 314351254 | 43 days ago | IN | 0 ETH | 0.00000116 | ||||
Withdraw | 312807506 | 48 days ago | IN | 0 ETH | 0.00000092 | ||||
Lock LP Token | 307286806 | 64 days ago | IN | 0.05 ETH | 0.00000411 | ||||
Withdraw | 296693977 | 95 days ago | IN | 0 ETH | 0.0000041 | ||||
Withdraw | 292287644 | 107 days ago | IN | 0 ETH | 0.00000143 | ||||
Withdraw | 290601180 | 112 days ago | IN | 0 ETH | 0.00000192 | ||||
Withdraw | 290599411 | 112 days ago | IN | 0 ETH | 0.0000031 | ||||
Withdraw | 290599191 | 112 days ago | IN | 0 ETH | 0.00000419 | ||||
Withdraw | 283176522 | 134 days ago | IN | 0 ETH | 0.00000351 | ||||
Withdraw | 279918003 | 143 days ago | IN | 0 ETH | 0.00000341 | ||||
Withdraw | 258155373 | 207 days ago | IN | 0 ETH | 0.00000103 | ||||
Withdraw | 245507215 | 244 days ago | IN | 0 ETH | 0.00000041 | ||||
Withdraw | 245507165 | 244 days ago | IN | 0 ETH | 0.00000096 | ||||
Increment Lock | 242193593 | 253 days ago | IN | 0 ETH | 0.00000098 | ||||
Withdraw | 241096529 | 256 days ago | IN | 0 ETH | 0.00000204 | ||||
Increment Lock | 241096455 | 256 days ago | IN | 0 ETH | 0.00000228 | ||||
Withdraw | 240094223 | 259 days ago | IN | 0 ETH | 0.00000146 | ||||
Lock LP Token | 240093800 | 259 days ago | IN | 0.05 ETH | 0.00000437 | ||||
Withdraw | 240093151 | 259 days ago | IN | 0 ETH | 0.0000013 | ||||
Lock LP Token | 238725681 | 263 days ago | IN | 0.05 ETH | 0.00000581 | ||||
Withdraw | 237735459 | 266 days ago | IN | 0 ETH | 0.00000167 | ||||
Withdraw | 236488070 | 270 days ago | IN | 0 ETH | 0.00000094 | ||||
Withdraw | 235652467 | 272 days ago | IN | 0 ETH | 0.00000126 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
307286806 | 64 days ago | 0.05 ETH | ||||
240093800 | 259 days ago | 0.05 ETH | ||||
238725681 | 263 days ago | 0.05 ETH | ||||
231152010 | 285 days ago | 0.05 ETH | ||||
230446503 | 287 days ago | 0.05 ETH | ||||
230446052 | 287 days ago | 0.05 ETH | ||||
228276816 | 294 days ago | 0.05 ETH | ||||
228276004 | 294 days ago | 0.05 ETH | ||||
222877789 | 309 days ago | 0.05 ETH | ||||
220769105 | 315 days ago | 0.05 ETH | ||||
194515595 | 392 days ago | 0.05 ETH | ||||
192367028 | 398 days ago | 0.05 ETH | ||||
190623787 | 404 days ago | 0.05 ETH | ||||
190225574 | 405 days ago | 0.05 ETH | ||||
187478754 | 413 days ago | 0.05 ETH | ||||
182736199 | 427 days ago | 0.05 ETH | ||||
181079735 | 432 days ago | 0.05 ETH | ||||
167981312 | 472 days ago | 0.05 ETH | ||||
167474745 | 473 days ago | 0.05 ETH | ||||
167443031 | 473 days ago | 0.05 ETH | ||||
167302697 | 474 days ago | 0.05 ETH | ||||
166523999 | 476 days ago | 0.05 ETH | ||||
166298452 | 477 days ago | 0.05 ETH | ||||
163611476 | 485 days ago | 0.05 ETH | ||||
162793937 | 487 days ago | 0.05 ETH |
Loading...
Loading
Contract Name:
UniswapV2Locker
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: UNLICENSED // ALL RIGHTS RESERVED // Unicrypt by SDDTech reserves all rights on this code. You may NOT copy these contracts. // This contract locks liquidity tokens. Used to give investors peace of mind a token team has locked liquidity // and that the liquidity tokens cannot be removed from the AMM until the specified unlock date has been reached. This is one of many // important industry standards to ensure safety. pragma solidity ^0.8.0; import "./TransferHelper.sol"; import "./EnumerableSet.sol"; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ICountryList.sol"; interface IUniswapV2Pair { function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); } interface IERCBurn { function burn(uint256 _amount) external; function approve(address spender, uint256 amount) external returns (bool); function allowance(address owner, address spender) external returns (uint256); function balanceOf(address account) external view returns (uint256); } interface IUniFactory { function getPair(address tokenA, address tokenB) external view returns (address); } interface IMigrator { function migrate(address lpToken, uint256 amount, uint256 unlockDate, address owner, uint16 countryCode, uint256 option) external returns (bool); } contract UniswapV2Locker is Ownable, ReentrancyGuard { using EnumerableSet for EnumerableSet.AddressSet; using EnumerableSet for EnumerableSet.UintSet; IUniFactory public uniswapFactory; struct UserInfo { EnumerableSet.AddressSet lockedTokens; // records all unique tokens the user has locked mapping(address => EnumerableSet.UintSet) locksForToken; // map erc20 address to lock id list for that user / token. } struct TokenLock { address lpToken; // The LP token uint256 lockDate; // the date the token was locked uint256 amount; // the amount of tokens still locked (initialAmount minus withdrawls) uint256 initialAmount; // the initial lock amount uint256 unlockDate; // the date the token can be withdrawn uint256 lockID; // lockID nonce per uni pair address owner; // who can withdraw the lock uint16 countryCode; // the country code of the locker / business } mapping(address => UserInfo) private USERS; // Get lock user info mapping(uint256 => TokenLock) public LOCKS; // ALL locks are registered here in chronological lock id order. uint256 public NONCE = 0; // incremental lock nonce counter, this is the unique ID for the next lock EnumerableSet.AddressSet private lockedTokens; // a list of all unique locked liquidity tokens mapping(address => uint256[]) public TOKEN_LOCKS; // map univ2 pair to an array of all its lock ids struct FeeStruct { uint256 ethFee; // Small eth fee to prevent spam on the platform IERCBurn secondaryFeeToken; // UNCX or UNCL uint256 secondaryTokenFee; // optional, UNCX or UNCL uint256 secondaryTokenDiscount; // discount on liquidity fee for burning secondaryToken uint256 liquidityFee; // fee on univ2 liquidity tokens uint256 referralPercent; // fee for referrals IERCBurn referralToken; // token the refferer must hold to qualify as a referrer uint256 referralHold; // balance the referrer must hold to qualify as a referrer uint256 referralDiscount; // discount on flatrate fees for using a valid referral address } FeeStruct public gFees; EnumerableSet.AddressSet private feeWhitelist; address payable devaddr; IMigrator public migrator; // migration contract ICountryList public COUNTRY_LIST; event onNewLock(uint256 lockID, address lpToken, address owner, uint256 amount, uint256 lockDate, uint256 unlockDate, uint16 countryCode); event onRelock(uint256 lockID, address lpToken, address owner, uint256 amountRemainingInLock, uint256 liquidityFee, uint256 unlockDate); event onWithdraw(uint256 lockID, address lpToken, address owner, uint256 amountRemainingInLock, uint256 amountRemoved); event onIncrementLock(uint256 lockID, address lpToken, address owner, address payer, uint256 amountRemainingInLock, uint256 amountAdded, uint256 liquidityFee); event onSplitLock(uint256 lockID, address lpToken, address owner, uint256 amountRemainingInLock, uint256 amountRemoved); event onTransferLockOwnership(uint256 lockID, address lpToken, address oldOwner, address newOwner); event OnMigrate(uint256 lockID, address lpToken, address owner, uint256 amountRemainingInLock, uint256 amountMigrated, uint256 migrationOption); constructor(IUniFactory _uniswapFactory, ICountryList _countryList) { devaddr = payable(0x04bDa42de3bc32Abb00df46004204424d4Cf8287); gFees.referralPercent = 250; // 25% gFees.ethFee = 2e17; gFees.secondaryTokenFee = 100e18; gFees.secondaryTokenDiscount = 200; // 20% gFees.liquidityFee = 10; // 1% gFees.referralHold = 10e18; gFees.referralDiscount = 100; // 10% uniswapFactory = _uniswapFactory; COUNTRY_LIST = _countryList; } function setDev(address payable _devaddr) public onlyOwner { devaddr = _devaddr; } /** * @notice set the migrator contract which allows locked lp tokens to be migrated to future AMM versions */ function setMigrator(IMigrator _migrator) public onlyOwner { migrator = _migrator; } function setSecondaryFeeToken(address _secondaryFeeToken) public onlyOwner { gFees.secondaryFeeToken = IERCBurn(_secondaryFeeToken); } /** * @notice referrers need to hold the specified token and hold amount to be elegible for referral fees */ function setReferralTokenAndHold(IERCBurn _referralToken, uint256 _hold) public onlyOwner { gFees.referralToken = _referralToken; gFees.referralHold = _hold; } function setFees(uint256 _referralPercent, uint256 _referralDiscount, uint256 _ethFee, uint256 _secondaryTokenFee, uint256 _secondaryTokenDiscount, uint256 _liquidityFee) public onlyOwner { gFees.referralPercent = _referralPercent; gFees.referralDiscount = _referralDiscount; gFees.ethFee = _ethFee; gFees.secondaryTokenFee = _secondaryTokenFee; gFees.secondaryTokenDiscount = _secondaryTokenDiscount; gFees.liquidityFee = _liquidityFee; } /** * @notice whitelisted accounts dont pay flatrate fees on locking */ function whitelistFeeAccount(address _user, bool _add) public onlyOwner { if (_add) { feeWhitelist.add(_user); } else { feeWhitelist.remove(_user); } } /** * @notice Creates a new lock * @param _lpToken the univ2 token address * @param _amount amount of LP tokens to lock * @param _unlock_date the unix timestamp (in seconds) until unlock * @param _referral the referrer address if any or address(0) for none * @param _fee_in_eth fees can be paid in eth or in a secondary token such as UNCX with a discount on univ2 tokens * @param _withdrawer the user who can withdraw liquidity once the lock expires. * @param _countryCode the code of the country from which the lock user account / business is from */ function lockLPToken (address _lpToken, uint256 _amount, uint256 _unlock_date, address payable _referral, bool _fee_in_eth, address payable _withdrawer, uint16 _countryCode) external payable nonReentrant { require(_unlock_date < 10000000000, 'TIMESTAMP INVALID'); // prevents errors when timestamp entered in milliseconds require(_amount > 0, 'INSUFFICIENT'); require(COUNTRY_LIST.countryIsValid(_countryCode), 'COUNTRY'); // TODO re-enable this check // ensure this pair is a univ2 pair by querying the factory IUniswapV2Pair lpair = IUniswapV2Pair(address(_lpToken)); address factoryPairAddress = uniswapFactory.getPair(lpair.token0(), lpair.token1()); require(factoryPairAddress == address(_lpToken), 'NOT UNIV2'); TransferHelper.safeTransferFrom(_lpToken, address(msg.sender), address(this), _amount); if (_referral != address(0) && address(gFees.referralToken) != address(0)) { require(gFees.referralToken.balanceOf(_referral) >= gFees.referralHold, 'INADEQUATE BALANCE'); } // flatrate fees if (!feeWhitelist.contains(msg.sender)) { if (_fee_in_eth) { // charge fee in eth uint256 ethFee = gFees.ethFee; if (_referral != address(0)) { ethFee = ethFee * (1000 - gFees.referralDiscount) / 1000; } require(msg.value == ethFee, 'FEE NOT MET'); uint256 devFee = ethFee; if (ethFee != 0 && _referral != address(0)) { // referral fee uint256 referralFee = devFee * gFees.referralPercent / 1000; _referral.transfer(referralFee); devFee -= referralFee; } devaddr.transfer(devFee); } else { // charge fee in token uint256 burnFee = gFees.secondaryTokenFee; if (_referral != address(0)) { burnFee = burnFee * (1000 - gFees.referralDiscount) / 1000; } TransferHelper.safeTransferFrom(address(gFees.secondaryFeeToken), address(msg.sender), address(this), burnFee); if (gFees.referralPercent != 0 && _referral != address(0)) { // referral fee uint256 referralFee = burnFee * gFees.referralPercent / 1000; TransferHelper.safeApprove(address(gFees.secondaryFeeToken), _referral, referralFee); TransferHelper.safeTransfer(address(gFees.secondaryFeeToken), _referral, referralFee); burnFee -= referralFee; } gFees.secondaryFeeToken.burn(burnFee); } } else if (msg.value > 0){ // refund eth if a whitelisted member sent it by mistake payable(msg.sender).transfer(msg.value); } // percent fee uint256 liquidityFee = _amount * gFees.liquidityFee / 1000; if (!_fee_in_eth && !feeWhitelist.contains(msg.sender)) { // fee discount for large lockers using secondary token liquidityFee = liquidityFee * (1000 - gFees.secondaryTokenDiscount) / 1000; } TransferHelper.safeTransfer(_lpToken, devaddr, liquidityFee); uint256 amountLocked = _amount - liquidityFee; TokenLock memory token_lock; token_lock.lpToken = _lpToken; token_lock.lockDate = block.timestamp; token_lock.amount = amountLocked; token_lock.initialAmount = amountLocked; token_lock.unlockDate = _unlock_date; token_lock.lockID = NONCE; token_lock.owner = _withdrawer; token_lock.countryCode = _countryCode; // record the lock for the univ2pair LOCKS[NONCE] = token_lock; lockedTokens.add(_lpToken); TOKEN_LOCKS[_lpToken].push(NONCE); // record the lock for the user UserInfo storage user = USERS[_withdrawer]; user.lockedTokens.add(_lpToken); EnumerableSet.UintSet storage user_locks = user.locksForToken[_lpToken]; user_locks.add(token_lock.lockID); NONCE ++; emit onNewLock(token_lock.lockID, _lpToken, _withdrawer, token_lock.amount, token_lock.lockDate, token_lock.unlockDate, token_lock.countryCode); } /** * @notice extend a lock with a new unlock date */ function relock (uint256 _lockID, uint256 _unlock_date) external nonReentrant { require(_unlock_date < 10000000000, 'TIMESTAMP INVALID'); // prevents errors when timestamp entered in milliseconds TokenLock storage userLock = LOCKS[_lockID]; require(userLock.owner == msg.sender, 'NOT OWNER'); require(userLock.unlockDate < _unlock_date, 'UNLOCK BEFORE'); uint256 liquidityFee = userLock.amount * gFees.liquidityFee / 1000; uint256 amountLocked = userLock.amount - liquidityFee; userLock.amount = amountLocked; userLock.unlockDate = _unlock_date; // send univ2 fee to dev address TransferHelper.safeTransfer(userLock.lpToken, devaddr, liquidityFee); emit onRelock(userLock.lockID, userLock.lpToken, msg.sender, userLock.amount, liquidityFee, userLock.unlockDate); } /** * @notice withdraw a specified amount from a lock */ function withdraw (uint256 _lockID, uint256 _amount) external nonReentrant { require(_amount > 0, 'ZERO WITHDRAWL'); TokenLock storage userLock = LOCKS[_lockID]; require(userLock.owner == msg.sender, 'NOT OWNER'); require(userLock.unlockDate < block.timestamp, 'NOT YET'); userLock.amount -= _amount; // clean user storage if (userLock.amount == 0) { EnumerableSet.UintSet storage userLocks = USERS[msg.sender].locksForToken[userLock.lpToken]; userLocks.remove(userLock.lockID); if (userLocks.length() == 0) { USERS[msg.sender].lockedTokens.remove(userLock.lpToken); } } TransferHelper.safeTransfer(userLock.lpToken, msg.sender, _amount); emit onWithdraw(userLock.lockID, userLock.lpToken, msg.sender, userLock.amount, _amount); } /** * @notice PLEASE BE AWARE THIS FUNCTION CONTAINS NO OWNER CHECK. ANYONE CAN LOCK THEIR LPS INTO SOMEONE ELSES * LOCK, BASICALLY GIVING THEM THEIR LP TOKENS. * The use here is a CONTRACT which is not the owner of a lock can increment locks periodically (for example with fees) on behalf of the owner. * This works well with taxing tokens. * * Increase the amount of tokens per a specific lock, this is preferable to creating a new lock, * less fees, and faster loading on our live block explorer. */ function incrementLock (uint256 _lockID, uint256 _amount) external nonReentrant { require(_amount > 0, 'ZERO AMOUNT'); TokenLock storage userLock = LOCKS[_lockID]; // require(userLock.owner == msg.sender, 'NOT OWNER'); // disabled to allow contracts to lock on behalf of owners TransferHelper.safeTransferFrom(userLock.lpToken, address(msg.sender), address(this), _amount); // send univ2 fee to dev address uint256 liquidityFee = _amount * gFees.liquidityFee / 1000; TransferHelper.safeTransfer(userLock.lpToken, devaddr, liquidityFee); uint256 amountLocked = _amount - liquidityFee; userLock.amount += amountLocked; emit onIncrementLock(userLock.lockID, userLock.lpToken, userLock.owner, msg.sender, userLock.amount, amountLocked, liquidityFee); } /** * @notice split a lock into two seperate locks, useful when a lock is about to expire and youd like to relock a portion * and withdraw a smaller portion */ function splitLock (uint256 _lockID, uint256 _amount) external payable nonReentrant { require(_amount > 0, 'ZERO AMOUNT'); TokenLock storage userLock = LOCKS[_lockID]; require(userLock.owner == msg.sender, 'NOT OWNER'); require(msg.value == gFees.ethFee, 'FEE NOT MET'); devaddr.transfer(gFees.ethFee); userLock.amount -= _amount; TokenLock memory token_lock; token_lock.lpToken = userLock.lpToken; token_lock.lockDate = userLock.lockDate; token_lock.amount = _amount; token_lock.initialAmount = _amount; token_lock.unlockDate = userLock.unlockDate; token_lock.lockID = NONCE; token_lock.owner = msg.sender; token_lock.countryCode = userLock.countryCode; // record the lock for the univ2pair TOKEN_LOCKS[userLock.lpToken].push(NONCE); LOCKS[NONCE] = token_lock; // record the lock for the user UserInfo storage user = USERS[msg.sender]; EnumerableSet.UintSet storage user_locks = user.locksForToken[userLock.lpToken]; user_locks.add(NONCE); NONCE ++; emit onSplitLock(userLock.lockID, userLock.lpToken, msg.sender, userLock.amount, _amount); emit onNewLock(token_lock.lockID, token_lock.lpToken, msg.sender, token_lock.amount, token_lock.lockDate, token_lock.unlockDate, token_lock.countryCode); } /** * @notice transfer a lock to a new owner, e.g. presale project -> project owner */ function transferLockOwnership (uint256 _lockID, address payable _newOwner) external { require(msg.sender != _newOwner, 'OWNER'); TokenLock storage transferredLock = LOCKS[_lockID]; require(transferredLock.owner == msg.sender, 'NOT OWNER'); // record the lock for the new Owner UserInfo storage user = USERS[_newOwner]; user.lockedTokens.add(transferredLock.lpToken); EnumerableSet.UintSet storage user_locks = user.locksForToken[transferredLock.lpToken]; user_locks.add(transferredLock.lockID); // remove the lock from the old owner EnumerableSet.UintSet storage userLocks = USERS[msg.sender].locksForToken[transferredLock.lpToken]; userLocks.remove(transferredLock.lockID); if (userLocks.length() == 0) { USERS[msg.sender].lockedTokens.remove(transferredLock.lpToken); } transferredLock.owner = _newOwner; emit onTransferLockOwnership(_lockID, transferredLock.lpToken, msg.sender, _newOwner); } /** * @notice migrates liquidity to the next release of an AMM * @param _migration_option to be used as an AMM selector */ function migrate (uint256 _lockID, uint256 _amount, uint256 _migration_option) external nonReentrant { require(address(migrator) != address(0), "NOT SET"); require(_amount > 0, 'ZERO MIGRATION'); TokenLock storage userLock = LOCKS[_lockID]; require(userLock.owner == msg.sender, 'NOT OWNER'); userLock.amount -= _amount; // clean user storage if (userLock.amount == 0) { EnumerableSet.UintSet storage userLocks = USERS[msg.sender].locksForToken[userLock.lpToken]; userLocks.remove(userLock.lockID); if (userLocks.length() == 0) { USERS[msg.sender].lockedTokens.remove(userLock.lpToken); } } TransferHelper.safeApprove(userLock.lpToken, address(migrator), _amount); migrator.migrate(userLock.lpToken, _amount, userLock.unlockDate, msg.sender, userLock.countryCode, _migration_option); emit OnMigrate(_lockID, userLock.lpToken, msg.sender, userLock.amount, _amount, _migration_option); } function getNumLocksForToken (address _lpToken) external view returns (uint256) { return TOKEN_LOCKS[_lpToken].length; } function getNumLockedTokens () external view returns (uint256) { return lockedTokens.length(); } function getLockedTokenAtIndex (uint256 _index) external view returns (address) { return lockedTokens.at(_index); } // user functions function getUserNumLockedTokens (address _user) external view returns (uint256) { UserInfo storage user = USERS[_user]; return user.lockedTokens.length(); } function getUserLockedTokenAtIndex (address _user, uint256 _index) external view returns (address) { UserInfo storage user = USERS[_user]; return user.lockedTokens.at(_index); } function getUserNumLocksForToken (address _user, address _lpToken) external view returns (uint256) { UserInfo storage user = USERS[_user]; return user.locksForToken[_lpToken].length(); } function getUserLockForTokenAtIndex (address _user, address _lpToken, uint256 _index) external view returns (TokenLock memory) { uint256 lockID = USERS[_user].locksForToken[_lpToken].at(_index); TokenLock storage tokenLock = LOCKS[lockID]; return tokenLock; } // whitelist function getWhitelistedUsersLength () external view returns (uint256) { return feeWhitelist.length(); } function getWhitelistedUserAtIndex (uint256 _index) external view returns (address) { return feeWhitelist.at(_index); } function getUserWhitelistStatus (address _user) external view returns (bool) { return feeWhitelist.contains(_user); } }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/structs/[email protected] pragma solidity ^0.8.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.3.0, sets of type `bytes32` (`Bytes32Set`), `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]; } // Bytes32Set struct Bytes32Set { 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(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, 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(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set 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(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, 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(uint160(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(uint160(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(uint160(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(uint160(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: UNLICENSED pragma solidity ^0.8.0; /** * @dev Interface of the CountryList contract */ interface ICountryList { function countryIsValid (uint16 _countryCode) external view returns (bool); }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
pragma solidity ^0.8.0; // helper methods for interacting with ERC20 tokens that do not consistently return true/false library TransferHelper { function safeApprove(address token, address to, uint value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: APPROVE_FAILED'); } function safeTransfer(address token, address to, uint value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FAILED'); } function safeTransferFrom(address token, address from, address to, uint value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FROM_FAILED'); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IUniFactory","name":"_uniswapFactory","type":"address"},{"internalType":"contract ICountryList","name":"_countryList","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockID","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountRemainingInLock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMigrated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"migrationOption","type":"uint256"}],"name":"OnMigrate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockID","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountRemainingInLock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAdded","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"onIncrementLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockID","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lockDate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockDate","type":"uint256"},{"indexed":false,"internalType":"uint16","name":"countryCode","type":"uint16"}],"name":"onNewLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockID","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountRemainingInLock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockDate","type":"uint256"}],"name":"onRelock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockID","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountRemainingInLock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountRemoved","type":"uint256"}],"name":"onSplitLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockID","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"onTransferLockOwnership","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockID","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountRemainingInLock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountRemoved","type":"uint256"}],"name":"onWithdraw","type":"event"},{"inputs":[],"name":"COUNTRY_LIST","outputs":[{"internalType":"contract ICountryList","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"LOCKS","outputs":[{"internalType":"address","name":"lpToken","type":"address"},{"internalType":"uint256","name":"lockDate","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"initialAmount","type":"uint256"},{"internalType":"uint256","name":"unlockDate","type":"uint256"},{"internalType":"uint256","name":"lockID","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint16","name":"countryCode","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NONCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"TOKEN_LOCKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gFees","outputs":[{"internalType":"uint256","name":"ethFee","type":"uint256"},{"internalType":"contract IERCBurn","name":"secondaryFeeToken","type":"address"},{"internalType":"uint256","name":"secondaryTokenFee","type":"uint256"},{"internalType":"uint256","name":"secondaryTokenDiscount","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"referralPercent","type":"uint256"},{"internalType":"contract IERCBurn","name":"referralToken","type":"address"},{"internalType":"uint256","name":"referralHold","type":"uint256"},{"internalType":"uint256","name":"referralDiscount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getLockedTokenAtIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumLockedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"}],"name":"getNumLocksForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"_lpToken","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getUserLockForTokenAtIndex","outputs":[{"components":[{"internalType":"address","name":"lpToken","type":"address"},{"internalType":"uint256","name":"lockDate","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"initialAmount","type":"uint256"},{"internalType":"uint256","name":"unlockDate","type":"uint256"},{"internalType":"uint256","name":"lockID","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint16","name":"countryCode","type":"uint16"}],"internalType":"struct UniswapV2Locker.TokenLock","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getUserLockedTokenAtIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserNumLockedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"_lpToken","type":"address"}],"name":"getUserNumLocksForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserWhitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getWhitelistedUserAtIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedUsersLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockID","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"incrementLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_unlock_date","type":"uint256"},{"internalType":"address payable","name":"_referral","type":"address"},{"internalType":"bool","name":"_fee_in_eth","type":"bool"},{"internalType":"address payable","name":"_withdrawer","type":"address"},{"internalType":"uint16","name":"_countryCode","type":"uint16"}],"name":"lockLPToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockID","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_migration_option","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrator","outputs":[{"internalType":"contract IMigrator","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockID","type":"uint256"},{"internalType":"uint256","name":"_unlock_date","type":"uint256"}],"name":"relock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_devaddr","type":"address"}],"name":"setDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_referralPercent","type":"uint256"},{"internalType":"uint256","name":"_referralDiscount","type":"uint256"},{"internalType":"uint256","name":"_ethFee","type":"uint256"},{"internalType":"uint256","name":"_secondaryTokenFee","type":"uint256"},{"internalType":"uint256","name":"_secondaryTokenDiscount","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMigrator","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERCBurn","name":"_referralToken","type":"address"},{"internalType":"uint256","name":"_hold","type":"uint256"}],"name":"setReferralTokenAndHold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_secondaryFeeToken","type":"address"}],"name":"setSecondaryFeeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockID","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"splitLock","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockID","type":"uint256"},{"internalType":"address payable","name":"_newOwner","type":"address"}],"name":"transferLockOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"contract IUniFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_add","type":"bool"}],"name":"whitelistFeeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockID","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006005553480156200001657600080fd5b506040516200301438038062003014833981016040819052620000399162000121565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055601480546001600160a01b03199081167304bda42de3bc32abb00df46004204424d4cf82871790915560fa600e556702c68af0bb14000060095568056bc75e2d63100000600b5560c8600c55600a600d55678ac7230489e800006010556064601155600280546001600160a01b039485169083161790556016805492909316911617905562000160565b6001600160a01b03811681146200011e57600080fd5b50565b600080604083850312156200013557600080fd5b8251620001428162000108565b6020840151909250620001558162000108565b809150509250929050565b612ea480620001706000396000f3fe6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063b9863a44116100a0578063e091dd1a1161006f578063e091dd1a1461071b578063eb35ed6214610731578063f02c264314610744578063f2fde38b14610764578063fe0ab5611461078457600080fd5b8063b9863a441461057a578063cf0d5af3146105aa578063d477f05f1461066a578063d4ff493f1461068a57600080fd5b8063a3969815116100dc578063a3969815146104fa578063a69d9c4f1461051a578063b2fb30cb1461053a578063b580a7d91461055a57600080fd5b80638da5cb5b14610408578063903df8061461042657806390e1a0031461044657806391ff1eb1146104da57600080fd5b8063715018a61161018557806388c950181161015457806388c95018146103885780638931a4be146103a85780638bdb2afa146103c85780638c301df8146103e857600080fd5b8063715018a61461031e578063783451e8146103335780637cd07e471461034857806386f6c3c11461036857600080fd5b8063441a3e70116101c1578063441a3e70146102b65780634bb18e3f146102d65780635a04fb69146102eb5780636588fc031461030b57600080fd5b806314dd79a3146101f35780631f2a1d2f1461023057806323cf3118146102745780633717dee714610296575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046129f2565b6107a4565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561023c57600080fd5b5061026661024b366004612a23565b6001600160a01b031660009081526008602052604090205490565b604051908152602001610227565b34801561028057600080fd5b5061029461028f366004612a23565b6107b7565b005b3480156102a257600080fd5b506102946102b1366004612a40565b61080c565b3480156102c257600080fd5b506102946102d1366004612a40565b61097c565b3480156102e257600080fd5b50610266610b6a565b3480156102f757600080fd5b50610294610306366004612a62565b610b7b565b610294610319366004612a40565b610d2d565b34801561032a57600080fd5b506102946111a5565b34801561033f57600080fd5b50610266611219565b34801561035457600080fd5b50601554610213906001600160a01b031681565b34801561037457600080fd5b50610294610383366004612a92565b611225565b34801561039457600080fd5b506102946103a3366004612ad5565b61126c565b3480156103b457600080fd5b506102946103c3366004612a23565b611518565b3480156103d457600080fd5b50600254610213906001600160a01b031681565b3480156103f457600080fd5b506102136104033660046129f2565b611564565b34801561041457600080fd5b506000546001600160a01b0316610213565b34801561043257600080fd5b50610213610441366004612b01565b611571565b34801561045257600080fd5b50600954600a54600b54600c54600d54600e54600f5460105460115461048998976001600160a01b03908116979695949316919089565b60408051998a526001600160a01b0398891660208b01528901969096526060880194909452608087019290925260a086015290921660c084015260e083019190915261010082015261012001610227565b3480156104e657600080fd5b506102946104f5366004612b3b565b61159b565b34801561050657600080fd5b50610266610515366004612a23565b6115e6565b34801561052657600080fd5b50610266610535366004612b69565b61160e565b34801561054657600080fd5b50610294610555366004612a40565b611644565b34801561056657600080fd5b50610266610575366004612b01565b611800565b34801561058657600080fd5b5061059a610595366004612a23565b611831565b6040519015158152602001610227565b3480156105b657600080fd5b5061061a6105c53660046129f2565b600460208190526000918252604090912080546001820154600283015460038401549484015460058501546006909501546001600160a01b039485169693959294919291811690600160a01b900461ffff1688565b604080516001600160a01b03998a16815260208101989098528701959095526060860193909352608085019190915260a084015290921660c082015261ffff90911660e082015261010001610227565b34801561067657600080fd5b50610294610685366004612a23565b61183e565b34801561069657600080fd5b506106aa6106a5366004612b97565b61188a565b604051610227919060006101008201905060018060a01b038084511683526020840151602084015260408401516040840152606084015160608401526080840151608084015260a084015160a08401528060c08501511660c08401525061ffff60e08401511660e083015292915050565b34801561072757600080fd5b5061026660055481565b61029461073f366004612bd8565b61194d565b34801561075057600080fd5b5061029461075f366004612b01565b6122bc565b34801561077057600080fd5b5061029461077f366004612a23565b61230c565b34801561079057600080fd5b50601654610213906001600160a01b031681565b60006107b16006836123f6565b92915050565b6000546001600160a01b031633146107ea5760405162461bcd60e51b81526004016107e190612c63565b60405180910390fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60026001540361082e5760405162461bcd60e51b81526004016107e190612c98565b60026001558061086e5760405162461bcd60e51b815260206004820152600b60248201526a16915493c8105353d5539560aa1b60448201526064016107e1565b60008281526004602052604090208054610893906001600160a01b0316333085612402565b600d546000906103e8906108a79085612ce5565b6108b19190612cfc565b82546014549192506108d0916001600160a01b03918216911683612532565b60006108dc8285612d1e565b9050808360020160008282546108f29190612d31565b90915550506005830154835460068501546002860154604080519485526001600160a01b0393841660208601529290911691830191909152336060830152608082015260a0810182905260c081018390527f290ddee191319eda9ea34e6de4555381e35469d74d73fe0e80fe7f0836620ea09060e0015b60405180910390a1505060018055505050565b60026001540361099e5760405162461bcd60e51b81526004016107e190612c98565b6002600155806109e15760405162461bcd60e51b815260206004820152600e60248201526d16915493c815d2551211149055d360921b60448201526064016107e1565b600082815260046020526040902060068101546001600160a01b03163314610a1b5760405162461bcd60e51b81526004016107e190612d44565b42816004015410610a585760405162461bcd60e51b81526020600482015260076024820152661393d50816515560ca1b60448201526064016107e1565b81816002016000828254610a6c9190612d1e565b90915550506002810154600003610aec5733600090815260036020908152604080832084546001600160a01b0316845260020190915290206005820154610ab490829061264d565b50610abe81612659565b600003610aea578154336000908152600360205260409020610ae8916001600160a01b0316612663565b505b505b8054610b02906001600160a01b03163384612532565b600581015481546002830154604080519384526001600160a01b0390921660208401523383830152606083015260808201849052517f4ad1282d02c0d7aa981ce2f5b4e42e99e212f6a24d11616393c32a87226e160c9181900360a00190a150506001805550565b6000610b766012612659565b905090565b6001600160a01b0381163303610bbb5760405162461bcd60e51b815260206004820152600560248201526427aba722a960d91b60448201526064016107e1565b600082815260046020526040902060068101546001600160a01b03163314610bf55760405162461bcd60e51b81526004016107e190612d44565b6001600160a01b03808316600090815260036020526040902082549091610c1e91839116612678565b5081546001600160a01b0316600090815260028201602052604090206005830154610c4a90829061268d565b5033600090815260036020908152604080832086546001600160a01b0316845260020190915290206005840154610c8290829061264d565b50610c8c81612659565b600003610cb8578354336000908152600360205260409020610cb6916001600160a01b0316612663565b505b6006840180546001600160a01b0319166001600160a01b038781169182179092558554604080518a8152919093166020820152339281019290925260608201527f4e602365e8ca79d90aa843bdcc20695568e4a35d5ff284b2f9a6e4c1ff9120529060800160405180910390a1505050505050565b600260015403610d4f5760405162461bcd60e51b81526004016107e190612c98565b600260015580610d8f5760405162461bcd60e51b815260206004820152600b60248201526a16915493c8105353d5539560aa1b60448201526064016107e1565b600082815260046020526040902060068101546001600160a01b03163314610dc95760405162461bcd60e51b81526004016107e190612d44565b6009543414610e085760405162461bcd60e51b815260206004820152600b60248201526a119151481393d50813515560aa1b60448201526064016107e1565b6014546009546040516001600160a01b039092169181156108fc0291906000818181858888f19350505050158015610e44573d6000803e3d6000fd5b5081816002016000828254610e599190612d1e565b90915550610e679050612997565b8160000160009054906101000a90046001600160a01b031681600001906001600160a01b031690816001600160a01b0316815250508160010154816020018181525050828160400181815250508281606001818152505081600401548160800181815250506005548160a0018181525050338160c001906001600160a01b031690816001600160a01b0316815250508160060160149054906101000a900461ffff168160e0019061ffff16908161ffff1681525050600860008360000160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060055490806001815401808255809150506001900390600052602060002001600090919091909150558060046000600554815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060e08201518160060160146101000a81548161ffff021916908361ffff160217905550905050600060036000336001600160a01b03166001600160a01b03168152602001908152602001600020905060008160020160008560000160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002090506110c96005548261268d90919063ffffffff16565b50600580549060006110da83612d67565b9091555050600584015484546002860154604080519384526001600160a01b0390921660208401523383830152606083015260808201879052517f697dcda8f78b880b1cb951baa5cc946598b5d42acd259da9f4c6020d771cf1e89181900360a00190a17f3e5a874dd8f086c73bba5a860cb04972e50b6207f84cc020037d576afa6ebc138360a001518460000151338660400151876020015188608001518960e001516040516111919796959493929190612d80565b60405180910390a150506001805550505050565b6000546001600160a01b031633146111cf5760405162461bcd60e51b81526004016107e190612c63565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610b766006612659565b6000546001600160a01b0316331461124f5760405162461bcd60e51b81526004016107e190612c63565b600e95909555601193909355600991909155600b55600c55600d55565b60026001540361128e5760405162461bcd60e51b81526004016107e190612c98565b60026001556015546001600160a01b03166112d55760405162461bcd60e51b81526020600482015260076024820152661393d50814d15560ca1b60448201526064016107e1565b600082116113165760405162461bcd60e51b815260206004820152600e60248201526d2d22a9279026a4a3a920aa24a7a760911b60448201526064016107e1565b600083815260046020526040902060068101546001600160a01b031633146113505760405162461bcd60e51b81526004016107e190612d44565b828160020160008282546113649190612d1e565b909155505060028101546000036113e45733600090815260036020908152604080832084546001600160a01b03168452600201909152902060058201546113ac90829061264d565b506113b681612659565b6000036113e25781543360009081526003602052604090206113e0916001600160a01b0316612663565b505b505b8054601554611400916001600160a01b03908116911685612699565b60155481546004808401546006850154604051633ab05fad60e21b81526001600160a01b0394851693810193909352602483018890526044830191909152336064830152600160a01b900461ffff16608482015260a4810185905291169063eac17eb49060c4016020604051808303816000875af1158015611486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114aa9190612dc0565b5080546002820154604080518781526001600160a01b039093166020840152339083015260608201526080810184905260a081018390527fd1c5393354113225db8a862cfa2e892ca5497c135d41d49c0c88222af90fc3a69060c00160405180910390a15050600180555050565b6000546001600160a01b031633146115425760405162461bcd60e51b81526004016107e190612c63565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006107b16012836123f6565b6001600160a01b038216600090815260036020526040812061159381846123f6565b949350505050565b6000546001600160a01b031633146115c55760405162461bcd60e51b81526004016107e190612c63565b80156115db576115d6601283612678565b505050565b6115d6601283612663565b6001600160a01b038116600090815260036020526040812061160781612659565b9392505050565b6001600160a01b038083166000908152600360209081526040808320938516835260028401909152812090919061159390612659565b6002600154036116665760405162461bcd60e51b81526004016107e190612c98565b60026001556402540be40081106116b35760405162461bcd60e51b81526020600482015260116024820152701512535154d51053540812539590531251607a1b60448201526064016107e1565b600082815260046020526040902060068101546001600160a01b031633146116ed5760405162461bcd60e51b81526004016107e190612d44565b818160040154106117305760405162461bcd60e51b815260206004820152600d60248201526c554e4c4f434b204245464f524560981b60448201526064016107e1565b60006103e8600960040154836002015461174a9190612ce5565b6117549190612cfc565b905060008183600201546117689190612d1e565b60028401819055600484018590558354601454919250611795916001600160a01b03918216911684612532565b6005830154835460028501546004860154604080519485526001600160a01b039093166020850152339284019290925260608301526080820184905260a08201527f139b970a1cf074dc6188d72d876cfd4d4992ae83931cf20dfdd59bb3b3dc0f919060c001610969565b6008602052816000526040600020818154811061181c57600080fd5b90600052602060002001600091509150505481565b60006107b16012836127ad565b6000546001600160a01b031633146118685760405162461bcd60e51b81526004016107e190612c63565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b611892612997565b6001600160a01b0380851660009081526003602090815260408083209387168352600290930190529081206118c790846123f6565b60009081526004602081815260409283902083516101008101855281546001600160a01b03908116825260018301549382019390935260028201549481019490945260038101546060850152918201546080840152600582015460a084015260069091015490811660c0830152600160a01b900461ffff1660e082015295945050505050565b60026001540361196f5760405162461bcd60e51b81526004016107e190612c98565b60026001556402540be40085106119bc5760405162461bcd60e51b81526020600482015260116024820152701512535154d51053540812539590531251607a1b60448201526064016107e1565b600086116119fb5760405162461bcd60e51b815260206004820152600c60248201526b125394d551919250d251539560a21b60448201526064016107e1565b601654604051635cb49b5560e01b815261ffff831660048201526001600160a01b0390911690635cb49b5590602401602060405180830381865afa158015611a47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6b9190612dc0565b611aa15760405162461bcd60e51b8152602060048201526007602482015266434f554e54525960c81b60448201526064016107e1565b60025460408051630dfe168160e01b8152905189926000926001600160a01b039182169263e6a4390592861691630dfe16819160048083019260209291908290030181865afa158015611af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1c9190612ddd565b846001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7e9190612ddd565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611bc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bed9190612ddd565b9050886001600160a01b0316816001600160a01b031614611c3c5760405162461bcd60e51b81526020600482015260096024820152682727aa102aa724ab1960b91b60448201526064016107e1565b611c488933308b612402565b6001600160a01b03861615801590611c6a5750600f546001600160a01b031615155b15611d2357601054600f546040516370a0823160e01b81526001600160a01b038981166004830152909116906370a0823190602401602060405180830381865afa158015611cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce09190612dfa565b1015611d235760405162461bcd60e51b8152602060048201526012602482015271494e41444551554154452042414c414e434560701b60448201526064016107e1565b611d2e6012336127ad565b611fa5578415611e74576009546001600160a01b03871615611d72576011546103e890611d5b9082612d1e565b611d659083612ce5565b611d6f9190612cfc565b90505b803414611daf5760405162461bcd60e51b815260206004820152600b60248201526a119151481393d50813515560aa1b60448201526064016107e1565b808015801590611dc757506001600160a01b03881615155b15611e3257600e546000906103e890611de09084612ce5565b611dea9190612cfc565b6040519091506001600160a01b038a169082156108fc029083906000818181858888f19350505050158015611e23573d6000803e3d6000fd5b50611e2e8183612d1e565b9150505b6014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611e6c573d6000803e3d6000fd5b505050611fd9565b600b546001600160a01b03871615611eae576011546103e890611e979082612d1e565b611ea19083612ce5565b611eab9190612cfc565b90505b600a54611ec6906001600160a01b0316333084612402565b600e5415801590611edf57506001600160a01b03871615155b15611f4157600e546000906103e890611ef89084612ce5565b611f029190612cfc565b600a54909150611f1c906001600160a01b03168983612699565b600a54611f33906001600160a01b03168983612532565b611f3d8183612d1e565b9150505b600a54604051630852cd8d60e31b8152600481018390526001600160a01b03909116906342966c6890602401600060405180830381600087803b158015611f8757600080fd5b505af1158015611f9b573d6000803e3d6000fd5b5050505050611fd9565b3415611fd95760405133903480156108fc02916000818181858888f19350505050158015611fd7573d6000803e3d6000fd5b505b600d546000906103e890611fed908b612ce5565b611ff79190612cfc565b90508515801561200f575061200d6012336127ad565b155b1561203c57600c546103e8906120259082612d1e565b61202f9083612ce5565b6120399190612cfc565b90505b601454612054908b906001600160a01b031683612532565b6000612060828b612d1e565b905061206a612997565b8b81600001906001600160a01b031690816001600160a01b031681525050428160200181815250508181604001818152505081816060018181525050898160800181815250506005548160a0018181525050868160c001906001600160a01b031690816001600160a01b031681525050858160e0019061ffff16908161ffff16815250508060046000600554815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060e08201518160060160146101000a81548161ffff021916908361ffff1602179055509050506121ca8c600661267890919063ffffffff16565b506001600160a01b03808d166000908152600860209081526040808320600554815460018101835591855283852090910155928a1682526003905220612210818e612678565b506001600160a01b038d166000908152600282016020526040902060a083015161223b90829061268d565b506005805490600061224c83612d67565b91905055507f3e5a874dd8f086c73bba5a860cb04972e50b6207f84cc020037d576afa6ebc138360a001518f8b8660400151876020015188608001518960e001516040516122a09796959493929190612d80565b60405180910390a1505060018055505050505050505050505050565b6000546001600160a01b031633146122e65760405162461bcd60e51b81526004016107e190612c63565b600f80546001600160a01b0319166001600160a01b039390931692909217909155601055565b6000546001600160a01b031633146123365760405162461bcd60e51b81526004016107e190612c63565b6001600160a01b03811661239b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061160783836127cf565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b17905291516000928392908816916124669190612e13565b6000604051808303816000865af19150503d80600081146124a3576040519150601f19603f3d011682016040523d82523d6000602084013e6124a8565b606091505b50915091508180156124d25750805115806124d25750808060200190518101906124d29190612dc0565b61252a5760405162461bcd60e51b8152602060048201526024808201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f46416044820152631253115160e21b60648201526084016107e1565b505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b179052915160009283929087169161258e9190612e13565b6000604051808303816000865af19150503d80600081146125cb576040519150601f19603f3d011682016040523d82523d6000602084013e6125d0565b606091505b50915091508180156125fa5750805115806125fa5750808060200190518101906125fa9190612dc0565b6126465760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c45440060448201526064016107e1565b5050505050565b60006116078383612855565b60006107b1825490565b6000611607836001600160a01b038416612855565b6000611607836001600160a01b038416612948565b60006116078383612948565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663095ea7b360e01b17905291516000928392908716916126f59190612e13565b6000604051808303816000865af19150503d8060008114612732576040519150601f19603f3d011682016040523d82523d6000602084013e612737565b606091505b50915091508180156127615750805115806127615750808060200190518101906127619190612dc0565b6126465760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657248656c7065723a20415050524f56455f4641494c4544000060448201526064016107e1565b6001600160a01b03811660009081526001830160205260408120541515611607565b8154600090821061282d5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107e1565b82600001828154811061284257612842612e42565b9060005260206000200154905092915050565b6000818152600183016020526040812054801561293e576000612879600183612d1e565b855490915060009061288d90600190612d1e565b905060008660000182815481106128a6576128a6612e42565b90600052602060002001549050808760000184815481106128c9576128c9612e42565b6000918252602090912001556128e0836001612d31565b6000828152600189016020526040902055865487908061290257612902612e58565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506107b1565b60009150506107b1565b600081815260018301602052604081205461298f575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107b1565b5060006107b1565b60405180610100016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600081526020016000815260200160006001600160a01b03168152602001600061ffff1681525090565b600060208284031215612a0457600080fd5b5035919050565b6001600160a01b0381168114612a2057600080fd5b50565b600060208284031215612a3557600080fd5b813561160781612a0b565b60008060408385031215612a5357600080fd5b50508035926020909101359150565b60008060408385031215612a7557600080fd5b823591506020830135612a8781612a0b565b809150509250929050565b60008060008060008060c08789031215612aab57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b600080600060608486031215612aea57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b1457600080fd5b8235612b1f81612a0b565b946020939093013593505050565b8015158114612a2057600080fd5b60008060408385031215612b4e57600080fd5b8235612b5981612a0b565b91506020830135612a8781612b2d565b60008060408385031215612b7c57600080fd5b8235612b8781612a0b565b91506020830135612a8781612a0b565b600080600060608486031215612bac57600080fd5b8335612bb781612a0b565b92506020840135612bc781612a0b565b929592945050506040919091013590565b600080600080600080600060e0888a031215612bf357600080fd5b8735612bfe81612a0b565b965060208801359550604088013594506060880135612c1c81612a0b565b93506080880135612c2c81612b2d565b925060a0880135612c3c81612a0b565b915060c088013561ffff81168114612c5357600080fd5b8091505092959891949750929550565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107b1576107b1612ccf565b600082612d1957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107b1576107b1612ccf565b808201808211156107b1576107b1612ccf565b6020808252600990820152682727aa1027aba722a960b91b604082015260600190565b600060018201612d7957612d79612ccf565b5060010190565b9687526001600160a01b0395861660208801529390941660408601526060850191909152608084015260a083019190915261ffff1660c082015260e00190565b600060208284031215612dd257600080fd5b815161160781612b2d565b600060208284031215612def57600080fd5b815161160781612a0b565b600060208284031215612e0c57600080fd5b5051919050565b6000825160005b81811015612e345760208186018101518583015201612e1a565b506000920191825250919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fdfea26469706673582212204649ae26504893fcbf06d62772e828ba8f5bb62add4c7038f7b4d9e1b702e06d64736f6c63430008130033000000000000000000000000c35dadb65012ec5796536bd9864ed8773abc74c4000000000000000000000000bab21591d9f4fe88912f2faa4e502c7d5a00ff76
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063b9863a44116100a0578063e091dd1a1161006f578063e091dd1a1461071b578063eb35ed6214610731578063f02c264314610744578063f2fde38b14610764578063fe0ab5611461078457600080fd5b8063b9863a441461057a578063cf0d5af3146105aa578063d477f05f1461066a578063d4ff493f1461068a57600080fd5b8063a3969815116100dc578063a3969815146104fa578063a69d9c4f1461051a578063b2fb30cb1461053a578063b580a7d91461055a57600080fd5b80638da5cb5b14610408578063903df8061461042657806390e1a0031461044657806391ff1eb1146104da57600080fd5b8063715018a61161018557806388c950181161015457806388c95018146103885780638931a4be146103a85780638bdb2afa146103c85780638c301df8146103e857600080fd5b8063715018a61461031e578063783451e8146103335780637cd07e471461034857806386f6c3c11461036857600080fd5b8063441a3e70116101c1578063441a3e70146102b65780634bb18e3f146102d65780635a04fb69146102eb5780636588fc031461030b57600080fd5b806314dd79a3146101f35780631f2a1d2f1461023057806323cf3118146102745780633717dee714610296575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046129f2565b6107a4565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561023c57600080fd5b5061026661024b366004612a23565b6001600160a01b031660009081526008602052604090205490565b604051908152602001610227565b34801561028057600080fd5b5061029461028f366004612a23565b6107b7565b005b3480156102a257600080fd5b506102946102b1366004612a40565b61080c565b3480156102c257600080fd5b506102946102d1366004612a40565b61097c565b3480156102e257600080fd5b50610266610b6a565b3480156102f757600080fd5b50610294610306366004612a62565b610b7b565b610294610319366004612a40565b610d2d565b34801561032a57600080fd5b506102946111a5565b34801561033f57600080fd5b50610266611219565b34801561035457600080fd5b50601554610213906001600160a01b031681565b34801561037457600080fd5b50610294610383366004612a92565b611225565b34801561039457600080fd5b506102946103a3366004612ad5565b61126c565b3480156103b457600080fd5b506102946103c3366004612a23565b611518565b3480156103d457600080fd5b50600254610213906001600160a01b031681565b3480156103f457600080fd5b506102136104033660046129f2565b611564565b34801561041457600080fd5b506000546001600160a01b0316610213565b34801561043257600080fd5b50610213610441366004612b01565b611571565b34801561045257600080fd5b50600954600a54600b54600c54600d54600e54600f5460105460115461048998976001600160a01b03908116979695949316919089565b60408051998a526001600160a01b0398891660208b01528901969096526060880194909452608087019290925260a086015290921660c084015260e083019190915261010082015261012001610227565b3480156104e657600080fd5b506102946104f5366004612b3b565b61159b565b34801561050657600080fd5b50610266610515366004612a23565b6115e6565b34801561052657600080fd5b50610266610535366004612b69565b61160e565b34801561054657600080fd5b50610294610555366004612a40565b611644565b34801561056657600080fd5b50610266610575366004612b01565b611800565b34801561058657600080fd5b5061059a610595366004612a23565b611831565b6040519015158152602001610227565b3480156105b657600080fd5b5061061a6105c53660046129f2565b600460208190526000918252604090912080546001820154600283015460038401549484015460058501546006909501546001600160a01b039485169693959294919291811690600160a01b900461ffff1688565b604080516001600160a01b03998a16815260208101989098528701959095526060860193909352608085019190915260a084015290921660c082015261ffff90911660e082015261010001610227565b34801561067657600080fd5b50610294610685366004612a23565b61183e565b34801561069657600080fd5b506106aa6106a5366004612b97565b61188a565b604051610227919060006101008201905060018060a01b038084511683526020840151602084015260408401516040840152606084015160608401526080840151608084015260a084015160a08401528060c08501511660c08401525061ffff60e08401511660e083015292915050565b34801561072757600080fd5b5061026660055481565b61029461073f366004612bd8565b61194d565b34801561075057600080fd5b5061029461075f366004612b01565b6122bc565b34801561077057600080fd5b5061029461077f366004612a23565b61230c565b34801561079057600080fd5b50601654610213906001600160a01b031681565b60006107b16006836123f6565b92915050565b6000546001600160a01b031633146107ea5760405162461bcd60e51b81526004016107e190612c63565b60405180910390fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60026001540361082e5760405162461bcd60e51b81526004016107e190612c98565b60026001558061086e5760405162461bcd60e51b815260206004820152600b60248201526a16915493c8105353d5539560aa1b60448201526064016107e1565b60008281526004602052604090208054610893906001600160a01b0316333085612402565b600d546000906103e8906108a79085612ce5565b6108b19190612cfc565b82546014549192506108d0916001600160a01b03918216911683612532565b60006108dc8285612d1e565b9050808360020160008282546108f29190612d31565b90915550506005830154835460068501546002860154604080519485526001600160a01b0393841660208601529290911691830191909152336060830152608082015260a0810182905260c081018390527f290ddee191319eda9ea34e6de4555381e35469d74d73fe0e80fe7f0836620ea09060e0015b60405180910390a1505060018055505050565b60026001540361099e5760405162461bcd60e51b81526004016107e190612c98565b6002600155806109e15760405162461bcd60e51b815260206004820152600e60248201526d16915493c815d2551211149055d360921b60448201526064016107e1565b600082815260046020526040902060068101546001600160a01b03163314610a1b5760405162461bcd60e51b81526004016107e190612d44565b42816004015410610a585760405162461bcd60e51b81526020600482015260076024820152661393d50816515560ca1b60448201526064016107e1565b81816002016000828254610a6c9190612d1e565b90915550506002810154600003610aec5733600090815260036020908152604080832084546001600160a01b0316845260020190915290206005820154610ab490829061264d565b50610abe81612659565b600003610aea578154336000908152600360205260409020610ae8916001600160a01b0316612663565b505b505b8054610b02906001600160a01b03163384612532565b600581015481546002830154604080519384526001600160a01b0390921660208401523383830152606083015260808201849052517f4ad1282d02c0d7aa981ce2f5b4e42e99e212f6a24d11616393c32a87226e160c9181900360a00190a150506001805550565b6000610b766012612659565b905090565b6001600160a01b0381163303610bbb5760405162461bcd60e51b815260206004820152600560248201526427aba722a960d91b60448201526064016107e1565b600082815260046020526040902060068101546001600160a01b03163314610bf55760405162461bcd60e51b81526004016107e190612d44565b6001600160a01b03808316600090815260036020526040902082549091610c1e91839116612678565b5081546001600160a01b0316600090815260028201602052604090206005830154610c4a90829061268d565b5033600090815260036020908152604080832086546001600160a01b0316845260020190915290206005840154610c8290829061264d565b50610c8c81612659565b600003610cb8578354336000908152600360205260409020610cb6916001600160a01b0316612663565b505b6006840180546001600160a01b0319166001600160a01b038781169182179092558554604080518a8152919093166020820152339281019290925260608201527f4e602365e8ca79d90aa843bdcc20695568e4a35d5ff284b2f9a6e4c1ff9120529060800160405180910390a1505050505050565b600260015403610d4f5760405162461bcd60e51b81526004016107e190612c98565b600260015580610d8f5760405162461bcd60e51b815260206004820152600b60248201526a16915493c8105353d5539560aa1b60448201526064016107e1565b600082815260046020526040902060068101546001600160a01b03163314610dc95760405162461bcd60e51b81526004016107e190612d44565b6009543414610e085760405162461bcd60e51b815260206004820152600b60248201526a119151481393d50813515560aa1b60448201526064016107e1565b6014546009546040516001600160a01b039092169181156108fc0291906000818181858888f19350505050158015610e44573d6000803e3d6000fd5b5081816002016000828254610e599190612d1e565b90915550610e679050612997565b8160000160009054906101000a90046001600160a01b031681600001906001600160a01b031690816001600160a01b0316815250508160010154816020018181525050828160400181815250508281606001818152505081600401548160800181815250506005548160a0018181525050338160c001906001600160a01b031690816001600160a01b0316815250508160060160149054906101000a900461ffff168160e0019061ffff16908161ffff1681525050600860008360000160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060055490806001815401808255809150506001900390600052602060002001600090919091909150558060046000600554815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060e08201518160060160146101000a81548161ffff021916908361ffff160217905550905050600060036000336001600160a01b03166001600160a01b03168152602001908152602001600020905060008160020160008560000160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002090506110c96005548261268d90919063ffffffff16565b50600580549060006110da83612d67565b9091555050600584015484546002860154604080519384526001600160a01b0390921660208401523383830152606083015260808201879052517f697dcda8f78b880b1cb951baa5cc946598b5d42acd259da9f4c6020d771cf1e89181900360a00190a17f3e5a874dd8f086c73bba5a860cb04972e50b6207f84cc020037d576afa6ebc138360a001518460000151338660400151876020015188608001518960e001516040516111919796959493929190612d80565b60405180910390a150506001805550505050565b6000546001600160a01b031633146111cf5760405162461bcd60e51b81526004016107e190612c63565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610b766006612659565b6000546001600160a01b0316331461124f5760405162461bcd60e51b81526004016107e190612c63565b600e95909555601193909355600991909155600b55600c55600d55565b60026001540361128e5760405162461bcd60e51b81526004016107e190612c98565b60026001556015546001600160a01b03166112d55760405162461bcd60e51b81526020600482015260076024820152661393d50814d15560ca1b60448201526064016107e1565b600082116113165760405162461bcd60e51b815260206004820152600e60248201526d2d22a9279026a4a3a920aa24a7a760911b60448201526064016107e1565b600083815260046020526040902060068101546001600160a01b031633146113505760405162461bcd60e51b81526004016107e190612d44565b828160020160008282546113649190612d1e565b909155505060028101546000036113e45733600090815260036020908152604080832084546001600160a01b03168452600201909152902060058201546113ac90829061264d565b506113b681612659565b6000036113e25781543360009081526003602052604090206113e0916001600160a01b0316612663565b505b505b8054601554611400916001600160a01b03908116911685612699565b60155481546004808401546006850154604051633ab05fad60e21b81526001600160a01b0394851693810193909352602483018890526044830191909152336064830152600160a01b900461ffff16608482015260a4810185905291169063eac17eb49060c4016020604051808303816000875af1158015611486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114aa9190612dc0565b5080546002820154604080518781526001600160a01b039093166020840152339083015260608201526080810184905260a081018390527fd1c5393354113225db8a862cfa2e892ca5497c135d41d49c0c88222af90fc3a69060c00160405180910390a15050600180555050565b6000546001600160a01b031633146115425760405162461bcd60e51b81526004016107e190612c63565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006107b16012836123f6565b6001600160a01b038216600090815260036020526040812061159381846123f6565b949350505050565b6000546001600160a01b031633146115c55760405162461bcd60e51b81526004016107e190612c63565b80156115db576115d6601283612678565b505050565b6115d6601283612663565b6001600160a01b038116600090815260036020526040812061160781612659565b9392505050565b6001600160a01b038083166000908152600360209081526040808320938516835260028401909152812090919061159390612659565b6002600154036116665760405162461bcd60e51b81526004016107e190612c98565b60026001556402540be40081106116b35760405162461bcd60e51b81526020600482015260116024820152701512535154d51053540812539590531251607a1b60448201526064016107e1565b600082815260046020526040902060068101546001600160a01b031633146116ed5760405162461bcd60e51b81526004016107e190612d44565b818160040154106117305760405162461bcd60e51b815260206004820152600d60248201526c554e4c4f434b204245464f524560981b60448201526064016107e1565b60006103e8600960040154836002015461174a9190612ce5565b6117549190612cfc565b905060008183600201546117689190612d1e565b60028401819055600484018590558354601454919250611795916001600160a01b03918216911684612532565b6005830154835460028501546004860154604080519485526001600160a01b039093166020850152339284019290925260608301526080820184905260a08201527f139b970a1cf074dc6188d72d876cfd4d4992ae83931cf20dfdd59bb3b3dc0f919060c001610969565b6008602052816000526040600020818154811061181c57600080fd5b90600052602060002001600091509150505481565b60006107b16012836127ad565b6000546001600160a01b031633146118685760405162461bcd60e51b81526004016107e190612c63565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b611892612997565b6001600160a01b0380851660009081526003602090815260408083209387168352600290930190529081206118c790846123f6565b60009081526004602081815260409283902083516101008101855281546001600160a01b03908116825260018301549382019390935260028201549481019490945260038101546060850152918201546080840152600582015460a084015260069091015490811660c0830152600160a01b900461ffff1660e082015295945050505050565b60026001540361196f5760405162461bcd60e51b81526004016107e190612c98565b60026001556402540be40085106119bc5760405162461bcd60e51b81526020600482015260116024820152701512535154d51053540812539590531251607a1b60448201526064016107e1565b600086116119fb5760405162461bcd60e51b815260206004820152600c60248201526b125394d551919250d251539560a21b60448201526064016107e1565b601654604051635cb49b5560e01b815261ffff831660048201526001600160a01b0390911690635cb49b5590602401602060405180830381865afa158015611a47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6b9190612dc0565b611aa15760405162461bcd60e51b8152602060048201526007602482015266434f554e54525960c81b60448201526064016107e1565b60025460408051630dfe168160e01b8152905189926000926001600160a01b039182169263e6a4390592861691630dfe16819160048083019260209291908290030181865afa158015611af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1c9190612ddd565b846001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7e9190612ddd565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611bc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bed9190612ddd565b9050886001600160a01b0316816001600160a01b031614611c3c5760405162461bcd60e51b81526020600482015260096024820152682727aa102aa724ab1960b91b60448201526064016107e1565b611c488933308b612402565b6001600160a01b03861615801590611c6a5750600f546001600160a01b031615155b15611d2357601054600f546040516370a0823160e01b81526001600160a01b038981166004830152909116906370a0823190602401602060405180830381865afa158015611cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce09190612dfa565b1015611d235760405162461bcd60e51b8152602060048201526012602482015271494e41444551554154452042414c414e434560701b60448201526064016107e1565b611d2e6012336127ad565b611fa5578415611e74576009546001600160a01b03871615611d72576011546103e890611d5b9082612d1e565b611d659083612ce5565b611d6f9190612cfc565b90505b803414611daf5760405162461bcd60e51b815260206004820152600b60248201526a119151481393d50813515560aa1b60448201526064016107e1565b808015801590611dc757506001600160a01b03881615155b15611e3257600e546000906103e890611de09084612ce5565b611dea9190612cfc565b6040519091506001600160a01b038a169082156108fc029083906000818181858888f19350505050158015611e23573d6000803e3d6000fd5b50611e2e8183612d1e565b9150505b6014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611e6c573d6000803e3d6000fd5b505050611fd9565b600b546001600160a01b03871615611eae576011546103e890611e979082612d1e565b611ea19083612ce5565b611eab9190612cfc565b90505b600a54611ec6906001600160a01b0316333084612402565b600e5415801590611edf57506001600160a01b03871615155b15611f4157600e546000906103e890611ef89084612ce5565b611f029190612cfc565b600a54909150611f1c906001600160a01b03168983612699565b600a54611f33906001600160a01b03168983612532565b611f3d8183612d1e565b9150505b600a54604051630852cd8d60e31b8152600481018390526001600160a01b03909116906342966c6890602401600060405180830381600087803b158015611f8757600080fd5b505af1158015611f9b573d6000803e3d6000fd5b5050505050611fd9565b3415611fd95760405133903480156108fc02916000818181858888f19350505050158015611fd7573d6000803e3d6000fd5b505b600d546000906103e890611fed908b612ce5565b611ff79190612cfc565b90508515801561200f575061200d6012336127ad565b155b1561203c57600c546103e8906120259082612d1e565b61202f9083612ce5565b6120399190612cfc565b90505b601454612054908b906001600160a01b031683612532565b6000612060828b612d1e565b905061206a612997565b8b81600001906001600160a01b031690816001600160a01b031681525050428160200181815250508181604001818152505081816060018181525050898160800181815250506005548160a0018181525050868160c001906001600160a01b031690816001600160a01b031681525050858160e0019061ffff16908161ffff16815250508060046000600554815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060e08201518160060160146101000a81548161ffff021916908361ffff1602179055509050506121ca8c600661267890919063ffffffff16565b506001600160a01b03808d166000908152600860209081526040808320600554815460018101835591855283852090910155928a1682526003905220612210818e612678565b506001600160a01b038d166000908152600282016020526040902060a083015161223b90829061268d565b506005805490600061224c83612d67565b91905055507f3e5a874dd8f086c73bba5a860cb04972e50b6207f84cc020037d576afa6ebc138360a001518f8b8660400151876020015188608001518960e001516040516122a09796959493929190612d80565b60405180910390a1505060018055505050505050505050505050565b6000546001600160a01b031633146122e65760405162461bcd60e51b81526004016107e190612c63565b600f80546001600160a01b0319166001600160a01b039390931692909217909155601055565b6000546001600160a01b031633146123365760405162461bcd60e51b81526004016107e190612c63565b6001600160a01b03811661239b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061160783836127cf565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b17905291516000928392908816916124669190612e13565b6000604051808303816000865af19150503d80600081146124a3576040519150601f19603f3d011682016040523d82523d6000602084013e6124a8565b606091505b50915091508180156124d25750805115806124d25750808060200190518101906124d29190612dc0565b61252a5760405162461bcd60e51b8152602060048201526024808201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f46416044820152631253115160e21b60648201526084016107e1565b505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b179052915160009283929087169161258e9190612e13565b6000604051808303816000865af19150503d80600081146125cb576040519150601f19603f3d011682016040523d82523d6000602084013e6125d0565b606091505b50915091508180156125fa5750805115806125fa5750808060200190518101906125fa9190612dc0565b6126465760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c45440060448201526064016107e1565b5050505050565b60006116078383612855565b60006107b1825490565b6000611607836001600160a01b038416612855565b6000611607836001600160a01b038416612948565b60006116078383612948565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663095ea7b360e01b17905291516000928392908716916126f59190612e13565b6000604051808303816000865af19150503d8060008114612732576040519150601f19603f3d011682016040523d82523d6000602084013e612737565b606091505b50915091508180156127615750805115806127615750808060200190518101906127619190612dc0565b6126465760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657248656c7065723a20415050524f56455f4641494c4544000060448201526064016107e1565b6001600160a01b03811660009081526001830160205260408120541515611607565b8154600090821061282d5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107e1565b82600001828154811061284257612842612e42565b9060005260206000200154905092915050565b6000818152600183016020526040812054801561293e576000612879600183612d1e565b855490915060009061288d90600190612d1e565b905060008660000182815481106128a6576128a6612e42565b90600052602060002001549050808760000184815481106128c9576128c9612e42565b6000918252602090912001556128e0836001612d31565b6000828152600189016020526040902055865487908061290257612902612e58565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506107b1565b60009150506107b1565b600081815260018301602052604081205461298f575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107b1565b5060006107b1565b60405180610100016040528060006001600160a01b03168152602001600081526020016000815260200160008152602001600081526020016000815260200160006001600160a01b03168152602001600061ffff1681525090565b600060208284031215612a0457600080fd5b5035919050565b6001600160a01b0381168114612a2057600080fd5b50565b600060208284031215612a3557600080fd5b813561160781612a0b565b60008060408385031215612a5357600080fd5b50508035926020909101359150565b60008060408385031215612a7557600080fd5b823591506020830135612a8781612a0b565b809150509250929050565b60008060008060008060c08789031215612aab57600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b600080600060608486031215612aea57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b1457600080fd5b8235612b1f81612a0b565b946020939093013593505050565b8015158114612a2057600080fd5b60008060408385031215612b4e57600080fd5b8235612b5981612a0b565b91506020830135612a8781612b2d565b60008060408385031215612b7c57600080fd5b8235612b8781612a0b565b91506020830135612a8781612a0b565b600080600060608486031215612bac57600080fd5b8335612bb781612a0b565b92506020840135612bc781612a0b565b929592945050506040919091013590565b600080600080600080600060e0888a031215612bf357600080fd5b8735612bfe81612a0b565b965060208801359550604088013594506060880135612c1c81612a0b565b93506080880135612c2c81612b2d565b925060a0880135612c3c81612a0b565b915060c088013561ffff81168114612c5357600080fd5b8091505092959891949750929550565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107b1576107b1612ccf565b600082612d1957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107b1576107b1612ccf565b808201808211156107b1576107b1612ccf565b6020808252600990820152682727aa1027aba722a960b91b604082015260600190565b600060018201612d7957612d79612ccf565b5060010190565b9687526001600160a01b0395861660208801529390941660408601526060850191909152608084015260a083019190915261ffff1660c082015260e00190565b600060208284031215612dd257600080fd5b815161160781612b2d565b600060208284031215612def57600080fd5b815161160781612a0b565b600060208284031215612e0c57600080fd5b5051919050565b6000825160005b81811015612e345760208186018101518583015201612e1a565b506000920191825250919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fdfea26469706673582212204649ae26504893fcbf06d62772e828ba8f5bb62add4c7038f7b4d9e1b702e06d64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c35dadb65012ec5796536bd9864ed8773abc74c4000000000000000000000000bab21591d9f4fe88912f2faa4e502c7d5a00ff76
-----Decoded View---------------
Arg [0] : _uniswapFactory (address): 0xc35DADB65012eC5796536bD9864eD8773aBc74C4
Arg [1] : _countryList (address): 0xBAB21591d9f4FE88912F2FAA4E502C7D5A00FF76
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c35dadb65012ec5796536bd9864ed8773abc74c4
Arg [1] : 000000000000000000000000bab21591d9f4fe88912f2faa4e502c7d5a00ff76
Deployed Bytecode Sourcemap
1448:18482:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18509:123;;;;;;;;;;-1:-1:-1;18509:123:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;363:32:7;;;345:51;;333:2;318:18;18509:123:6;;;;;;;;18261:128;;;;;;;;;;-1:-1:-1;18261:128:6;;;;;:::i;:::-;-1:-1:-1;;;;;18355:21:6;18332:7;18355:21;;;:11;:21;;;;;:28;;18261:128;;;;941:25:7;;;929:2;914:18;18261:128:6;795:177:7;5428:92:6;;;;;;;;;;-1:-1:-1;5428:92:6;;;;;:::i;:::-;;:::i;:::-;;13657:825;;;;;;;;;;-1:-1:-1;13657:825:6;;;;;:::i;:::-;;:::i;12283:828::-;;;;;;;;;;-1:-1:-1;12283:828:6;;;;;:::i;:::-;;:::i;19548:111::-;;;;;;;;;;;;;:::i;16118:995::-;;;;;;;;;;-1:-1:-1;16118:995:6;;;;;:::i;:::-;;:::i;14665:1347::-;;;;;;:::i;:::-;;:::i;1752:145:3:-;;;;;;;;;;;;;:::i;18397:104:6:-;;;;;;;;;;;;;:::i;3684:25::-;;;;;;;;;;-1:-1:-1;3684:25:6;;;;-1:-1:-1;;;;;3684:25:6;;;5978:472;;;;;;;;;;-1:-1:-1;5978:472:6;;;;;:::i;:::-;;:::i;17259:994::-;;;;;;;;;;-1:-1:-1;17259:994:6;;;;;:::i;:::-;;:::i;5528:142::-;;;;;;;;;;-1:-1:-1;5528:142:6;;;;;:::i;:::-;;:::i;1611:33::-;;;;;;;;;;-1:-1:-1;1611:33:6;;;;-1:-1:-1;;;;;1611:33:6;;;19667:127;;;;;;;;;;-1:-1:-1;19667:127:6;;;;;:::i;:::-;;:::i;1120:85:3:-;;;;;;;;;;-1:-1:-1;1166:7:3;1192:6;-1:-1:-1;;;;;1192:6:3;1120:85;;18838:190:6;;;;;;;;;;-1:-1:-1;18838:190:6;;;;;:::i;:::-;;:::i;3571:22::-;;;;;;;;;;-1:-1:-1;3571:22:6;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3571:22:6;;;;;;;;;;;;;;;;;3851:25:7;;;-1:-1:-1;;;;;3950:15:7;;;3945:2;3930:18;;3923:43;3982:18;;3975:34;;;;4040:2;4025:18;;4018:34;;;;4083:3;4068:19;;4061:35;;;;3903:3;4112:19;;4105:35;4177:15;;;4171:3;4156:19;;4149:44;4224:3;4209:19;;4202:35;;;;4268:3;4253:19;;4246:35;3838:3;3823:19;3571:22:6;3448:839:7;6541:183:6;;;;;;;;;;-1:-1:-1;6541:183:6;;;;;:::i;:::-;;:::i;18661:169::-;;;;;;;;;;-1:-1:-1;18661:169:6;;;;;:::i;:::-;;:::i;19036:199::-;;;;;;;;;;-1:-1:-1;19036:199:6;;;;;:::i;:::-;;:::i;11371:836::-;;;;;;;;;;-1:-1:-1;11371:836:6;;;;;:::i;:::-;;:::i;2783:48::-;;;;;;;;;;-1:-1:-1;2783:48:6;;;;;:::i;:::-;;:::i;19802:125::-;;;;;;;;;;-1:-1:-1;19802:125:6;;;;;:::i;:::-;;:::i;:::-;;;5360:14:7;;5353:22;5335:41;;5323:2;5308:18;19802:125:6;5195:187:7;2467:42:6;;;;;;;;;;-1:-1:-1;2467:42:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2467:42:6;;;;;;;;;;;;;;-1:-1:-1;;;2467:42:6;;;;;;;;;;-1:-1:-1;;;;;5784:15:7;;;5766:34;;5831:2;5816:18;;5809:34;;;;5859:18;;5852:34;;;;5917:2;5902:18;;5895:34;;;;5960:3;5945:19;;5938:35;;;;5746:3;5989:19;;5982:35;6054:15;;;6048:3;6033:19;;6026:44;6119:6;6107:19;;;6101:3;6086:19;;6079:48;5715:3;5700:19;2467:42:6;5387:746:7;5208:90:6;;;;;;;;;;-1:-1:-1;5208:90:6;;;;;:::i;:::-;;:::i;19243:281::-;;;;;;;;;;-1:-1:-1;19243:281:6;;;;;:::i;:::-;;:::i;:::-;;;;;;7003:4:7;7045:3;7034:9;7030:19;7022:27;;7085:1;7081;7076:3;7072:11;7068:19;7133:2;7124:6;7118:13;7114:22;7103:9;7096:41;7193:4;7185:6;7181:17;7175:24;7168:4;7157:9;7153:20;7146:54;7256:4;7248:6;7244:17;7238:24;7231:4;7220:9;7216:20;7209:54;7319:4;7311:6;7307:17;7301:24;7294:4;7283:9;7279:20;7272:54;7382:4;7374:6;7370:17;7364:24;7357:4;7346:9;7342:20;7335:54;7445:4;7437:6;7433:17;7427:24;7420:4;7409:9;7405:20;7398:54;7520:2;7512:4;7504:6;7500:17;7494:24;7490:33;7483:4;7472:9;7468:20;7461:63;;7592:6;7584:4;7576:6;7572:17;7566:24;7562:37;7555:4;7544:9;7540:20;7533:67;6859:747;;;;;2579:24:6;;;;;;;;;;;;;;;;7321:3977;;;;;;:::i;:::-;;:::i;5798:172::-;;;;;;;;;;-1:-1:-1;5798:172:6;;;;;:::i;:::-;;:::i;2046:240:3:-;;;;;;;;;;-1:-1:-1;2046:240:3;;;;;:::i;:::-;;:::i;3736:32:6:-;;;;;;;;;;-1:-1:-1;3736:32:6;;;;-1:-1:-1;;;;;3736:32:6;;;18509:123;18580:7;18603:23;:12;18619:6;18603:15;:23::i;:::-;18596:30;18509:123;-1:-1:-1;;18509:123:6:o;5428:92::-;1166:7:3;1192:6;-1:-1:-1;;;;;1192:6:3;723:10:0;1332:23:3;1324:68;;;;-1:-1:-1;;;1324:68:3;;;;;;;:::i;:::-;;;;;;;;;5494:8:6::1;:20:::0;;-1:-1:-1;;;;;;5494:20:6::1;-1:-1:-1::0;;;;;5494:20:6;;;::::1;::::0;;;::::1;::::0;;5428:92::o;13657:825::-;1784:1:4;2381:7;;:19;2373:63;;;;-1:-1:-1;;;2373:63:4;;;;;;;:::i;:::-;1784:1;2514:7;:18;13752:11:6;13744:35:::1;;;::::0;-1:-1:-1;;;13744:35:6;;10091:2:7;13744:35:6::1;::::0;::::1;10073:21:7::0;10130:2;10110:18;;;10103:30;-1:-1:-1;;;10149:18:7;;;10142:41;10200:18;;13744:35:6::1;9889:335:7::0;13744:35:6::1;13786:26;13815:14:::0;;;:5:::1;:14;::::0;;;;13993:16;;13961:94:::1;::::0;-1:-1:-1;;;;;13993:16:6::1;14019:10;14040:4;14047:7:::0;13961:31:::1;:94::i;:::-;14139:18:::0;;14106:20:::1;::::0;14160:4:::1;::::0;14129:28:::1;::::0;:7;:28:::1;:::i;:::-;:35;;;;:::i;:::-;14199:16:::0;;14217:7:::1;::::0;14106:58;;-1:-1:-1;14171:68:6::1;::::0;-1:-1:-1;;;;;14199:16:6;;::::1;::::0;14217:7:::1;14106:58:::0;14171:27:::1;:68::i;:::-;14246:20;14269:22;14279:12:::0;14269:7;:22:::1;:::i;:::-;14246:45;;14323:12;14304:8;:15;;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;14369:15:6::1;::::0;::::1;::::0;14386:16;;14404:14:::1;::::0;::::1;::::0;14432:15:::1;::::0;::::1;::::0;14353:123:::1;::::0;;11334:25:7;;;-1:-1:-1;;;;;14386:16:6;;::::1;11428:2:7::0;11413:18;;11406:43;14404:14:6;;;::::1;11465:18:7::0;;;11458:43;;;;14420:10:6::1;11532:2:7::0;11517:18;;11510:43;11584:3;11569:19;;11562:35;11386:3;11613:19;;11606:35;;;11672:3;11657:19;;11650:35;;;14353:123:6::1;::::0;11321:3:7;11306:19;14353:123:6::1;;;;;;;;-1:-1:-1::0;;1740:1:4;2693:22;;-1:-1:-1;;;13657:825:6:o;12283:828::-;1784:1:4;2381:7;;:19;2373:63;;;;-1:-1:-1;;;2373:63:4;;;;;;;:::i;:::-;1784:1;2514:7;:18;12373:11:6;12365:38:::1;;;::::0;-1:-1:-1;;;12365:38:6;;11898:2:7;12365:38:6::1;::::0;::::1;11880:21:7::0;11937:2;11917:18;;;11910:30;-1:-1:-1;;;11956:18:7;;;11949:44;12010:18;;12365:38:6::1;11696:338:7::0;12365:38:6::1;12410:26;12439:14:::0;;;:5:::1;:14;::::0;;;;12468::::1;::::0;::::1;::::0;-1:-1:-1;;;;;12468:14:6::1;12486:10;12468:28;12460:50;;;;-1:-1:-1::0;;;12460:50:6::1;;;;;;;:::i;:::-;12547:15;12525:8;:19;;;:37;12517:57;;;::::0;-1:-1:-1;;;12517:57:6;;12578:2:7;12517:57:6::1;::::0;::::1;12560:21:7::0;12617:1;12597:18;;;12590:29;-1:-1:-1;;;12635:18:7;;;12628:37;12682:18;;12517:57:6::1;12376:330:7::0;12517:57:6::1;12600:7;12581:8;:15;;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;12647:15:6::1;::::0;::::1;::::0;12666:1:::1;12647:20:::0;12643:289:::1;;12726:10;12678:39;12720:17:::0;;;:5:::1;:17;::::0;;;;;;;12752:16;;-1:-1:-1;;;;;12752:16:6::1;12720:49:::0;;:31:::1;;:49:::0;;;;;12795:15:::1;::::0;::::1;::::0;12778:33:::1;::::0;12720:49;;12778:16:::1;:33::i;:::-;;12824:18;:9;:16;:18::i;:::-;12846:1;12824:23:::0;12820:105:::1;;12898:16:::0;;12866:10:::1;12898:16;12860:17:::0;;;:5:::1;:17;::::0;;;;:55:::1;::::0;-1:-1:-1;;;;;12898:16:6::1;12860:37;:55::i;:::-;;12820:105;12669:263;12643:289;12972:16:::0;;12944:66:::1;::::0;-1:-1:-1;;;;;12972:16:6::1;12990:10;13002:7:::0;12944:27:::1;:66::i;:::-;13033:15;::::0;::::1;::::0;13050:16;;13080:15:::1;::::0;::::1;::::0;13022:83:::1;::::0;;12970:25:7;;;-1:-1:-1;;;;;13050:16:6;;::::1;13064:2:7::0;13049:18;;13042:43;13068:10:6::1;13101:18:7::0;;;13094:43;13168:2;13153:18;;13146:34;13211:3;13196:19;;13189:35;;;13022:83:6;::::1;::::0;;;;12957:3:7;13022:83:6;;::::1;-1:-1:-1::0;;1740:1:4;2693:22;;-1:-1:-1;12283:828:6:o;19548:111::-;19609:7;19632:21;:12;:19;:21::i;:::-;19625:28;;19548:111;:::o;16118:995::-;-1:-1:-1;;;;;16218:23:6;;:10;:23;16210:41;;;;-1:-1:-1;;;16210:41:6;;13437:2:7;16210:41:6;;;13419:21:7;13476:1;13456:18;;;13449:29;-1:-1:-1;;;13494:18:7;;;13487:35;13539:18;;16210:41:6;13235:328:7;16210:41:6;16258:33;16294:14;;;:5;:14;;;;;16323:21;;;;-1:-1:-1;;;;;16323:21:6;16348:10;16323:35;16315:57;;;;-1:-1:-1;;;16315:57:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;16451:16:6;;;16427:21;16451:16;;;:5;:16;;;;;16496:23;;16451:16;;16474:46;;16451:16;;16496:23;16474:21;:46::i;:::-;-1:-1:-1;16589:23:6;;-1:-1:-1;;;;;16589:23:6;16527:40;16570:43;;;:18;;;:43;;;;;16635:22;;;;16620:38;;16570:43;;16620:14;:38::i;:::-;-1:-1:-1;16758:10:6;16710:39;16752:17;;;:5;:17;;;;;;;;16784:23;;-1:-1:-1;;;;;16784:23:6;16752:56;;:31;;:56;;;;;16832:22;;;;16815:40;;16752:56;;16815:16;:40::i;:::-;;16866:18;:9;:16;:18::i;:::-;16888:1;16866:23;16862:108;;16938:23;;16906:10;16938:23;16900:17;;;:5;:17;;;;;:62;;-1:-1:-1;;;;;16938:23:6;16900:37;:62::i;:::-;;16862:108;16982:21;;;:33;;-1:-1:-1;;;;;;16982:33:6;-1:-1:-1;;;;;16982:33:6;;;;;;;;;17060:23;;17027:80;;;13807:25:7;;;17060:23:6;;;;13901:2:7;13886:18;;13879:43;17085:10:6;13938:18:7;;;13931:43;;;;14005:2;13990:18;;13983:43;17027:80:6;;13794:3:7;13779:19;17027:80:6;;;;;;;16203:910;;;;16118:995;;:::o;14665:1347::-;1784:1:4;2381:7;;:19;2373:63;;;;-1:-1:-1;;;2373:63:4;;;;;;;:::i;:::-;1784:1;2514:7;:18;14764:11:6;14756:35:::1;;;::::0;-1:-1:-1;;;14756:35:6;;10091:2:7;14756:35:6::1;::::0;::::1;10073:21:7::0;10130:2;10110:18;;;10103:30;-1:-1:-1;;;10149:18:7;;;10142:41;10200:18;;14756:35:6::1;9889:335:7::0;14756:35:6::1;14798:26;14827:14:::0;;;:5:::1;:14;::::0;;;;14856::::1;::::0;::::1;::::0;-1:-1:-1;;;;;14856:14:6::1;14874:10;14856:28;14848:50;;;;-1:-1:-1::0;;;14848:50:6::1;;;;;;;:::i;:::-;14932:5;:12:::0;14919:9:::1;:25;14911:49;;;::::0;-1:-1:-1;;;14911:49:6;;14239:2:7;14911:49:6::1;::::0;::::1;14221:21:7::0;14278:2;14258:18;;;14251:30;-1:-1:-1;;;14297:18:7;;;14290:41;14348:18;;14911:49:6::1;14037:335:7::0;14911:49:6::1;14967:7;::::0;14984:5:::1;:12:::0;14967:30:::1;::::0;-1:-1:-1;;;;;14967:7:6;;::::1;::::0;:30;::::1;;;::::0;14984:12;14967:7:::1;:30:::0;:7;:30;14984:12;14967:7;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;15029:7;15010:8;:15;;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;15049:27:6::1;::::0;-1:-1:-1;15049:27:6::1;:::i;:::-;15104:8;:16;;;;;;;;;;-1:-1:-1::0;;;;;15104:16:6::1;15083:10;:18;;:37;-1:-1:-1::0;;;;;15083:37:6::1;;;-1:-1:-1::0;;;;;15083:37:6::1;;;::::0;::::1;15149:8;:17;;;15127:10;:19;;:39;;;::::0;::::1;15193:7;15173:10;:17;;:27;;;::::0;::::1;15234:7;15207:10;:24;;:34;;;::::0;::::1;15272:8;:19;;;15248:10;:21;;:43;;;::::0;::::1;15318:5;;15298:10;:17;;:25;;;::::0;::::1;15349:10;15330;:16;;:29;-1:-1:-1::0;;;;;15330:29:6::1;;;-1:-1:-1::0;;;;;15330:29:6::1;;;::::0;::::1;15391:8;:20;;;;;;;;;;;;15366:10;:22;;:45;;;;;;;;;::::0;::::1;15462:11;:29;15474:8;:16;;;;;;;;;;-1:-1:-1::0;;;;;15474:16:6::1;-1:-1:-1::0;;;;;15462:29:6::1;-1:-1:-1::0;;;;;15462:29:6::1;;;;;;;;;;;;15497:5;;15462:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15525:10;15510:5;:12;15516:5;;15510:12;;;;;;;;;;;:25;;;;;;;;;;;;;-1:-1:-1::0;;;;;15510:25:6::1;;;;;-1:-1:-1::0;;;;;15510:25:6::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;15510:25:6::1;;;;;-1:-1:-1::0;;;;;15510:25:6::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15581:21;15605:5;:17;15611:10;-1:-1:-1::0;;;;;15605:17:6::1;-1:-1:-1::0;;;;;15605:17:6::1;;;;;;;;;;;;15581:41;;15629:40;15672:4;:18;;:36;15691:8;:16;;;;;;;;;;-1:-1:-1::0;;;;;15691:16:6::1;-1:-1:-1::0;;;;;15672:36:6::1;-1:-1:-1::0;;;;;15672:36:6::1;;;;;;;;;;;;15629:79;;15715:21;15730:5;;15715:10;:14;;:21;;;;:::i;:::-;-1:-1:-1::0;15743:5:6::1;:8:::0;;;:5:::1;:8;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;15775:15:6::1;::::0;::::1;::::0;15792:16;;15822:15:::1;::::0;::::1;::::0;15763:84:::1;::::0;;12970:25:7;;;-1:-1:-1;;;;;15792:16:6;;::::1;13064:2:7::0;13049:18;;13042:43;15810:10:6::1;13101:18:7::0;;;13094:43;13168:2;13153:18;;13146:34;13211:3;13196:19;;13189:35;;;15763:84:6;::::1;::::0;;;;12957:3:7;15763:84:6;;::::1;15859:147;15869:10;:17;;;15888:10;:18;;;15908:10;15920;:17;;;15939:10;:19;;;15960:10;:21;;;15983:10;:22;;;15859:147;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;1740:1:4;2693:22;;-1:-1:-1;;;;14665:1347:6:o;1752:145:3:-;1166:7;1192:6;-1:-1:-1;;;;;1192:6:3;723:10:0;1332:23:3;1324:68;;;;-1:-1:-1;;;1324:68:3;;;;;;;:::i;:::-;1858:1:::1;1842:6:::0;;1821:40:::1;::::0;-1:-1:-1;;;;;1842:6:3;;::::1;::::0;1821:40:::1;::::0;1858:1;;1821:40:::1;1888:1;1871:19:::0;;-1:-1:-1;;;;;;1871:19:3::1;::::0;;1752:145::o;18397:104:6:-;18451:7;18474:21;:12;:19;:21::i;5978:472::-;1166:7:3;1192:6;-1:-1:-1;;;;;1192:6:3;723:10:0;1332:23:3;1324:68;;;;-1:-1:-1;;;1324:68:3;;;;;;;:::i;:::-;6173:21:6;:40;;;;6220:22;:42;;;;6173:5:::1;6269:22:::0;;;;6298:23;:44;6349:28;:54;6410:18;:34;5978:472::o;17259:994::-;1784:1:4;2381:7;;:19;2373:63;;;;-1:-1:-1;;;2373:63:4;;;;;;;:::i;:::-;1784:1;2514:7;:18;17383:8:6::1;::::0;-1:-1:-1;;;;;17383:8:6::1;17367:51;;;::::0;-1:-1:-1;;;17367:51:6;;15398:2:7;17367:51:6::1;::::0;::::1;15380:21:7::0;15437:1;15417:18;;;15410:29;-1:-1:-1;;;15455:18:7;;;15448:37;15502:18;;17367:51:6::1;15196:330:7::0;17367:51:6::1;17443:1;17433:7;:11;17425:38;;;::::0;-1:-1:-1;;;17425:38:6;;15733:2:7;17425:38:6::1;::::0;::::1;15715:21:7::0;15772:2;15752:18;;;15745:30;-1:-1:-1;;;15791:18:7;;;15784:44;15845:18;;17425:38:6::1;15531:338:7::0;17425:38:6::1;17476:26;17505:14:::0;;;:5:::1;:14;::::0;;;;17534::::1;::::0;::::1;::::0;-1:-1:-1;;;;;17534:14:6::1;17552:10;17534:28;17526:50;;;;-1:-1:-1::0;;;17526:50:6::1;;;;;;;:::i;:::-;17602:7;17583:8;:15;;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;17649:15:6::1;::::0;::::1;::::0;17668:1:::1;17649:20:::0;17645:289:::1;;17728:10;17680:39;17722:17:::0;;;:5:::1;:17;::::0;;;;;;;17754:16;;-1:-1:-1;;;;;17754:16:6::1;17722:49:::0;;:31:::1;;:49:::0;;;;;17797:15:::1;::::0;::::1;::::0;17780:33:::1;::::0;17722:49;;17780:16:::1;:33::i;:::-;;17826:18;:9;:16;:18::i;:::-;17848:1;17826:23:::0;17822:105:::1;;17900:16:::0;;17868:10:::1;17900:16;17862:17:::0;;;:5:::1;:17;::::0;;;;:55:::1;::::0;-1:-1:-1;;;;;17900:16:6::1;17862:37;:55::i;:::-;;17822:105;17671:263;17645:289;17973:16:::0;;17999:8:::1;::::0;17946:72:::1;::::0;-1:-1:-1;;;;;17973:16:6;;::::1;::::0;17999:8:::1;18010:7:::0;17946:26:::1;:72::i;:::-;18025:8;::::0;18042:16;;18069:19:::1;::::0;;::::1;::::0;18102:20:::1;::::0;::::1;::::0;18025:117:::1;::::0;-1:-1:-1;;;18025:117:6;;-1:-1:-1;;;;;18042:16:6;;::::1;18025:117:::0;;::::1;16197:34:7::0;;;;16247:18;;;16240:34;;;16290:18;;;16283:34;;;;18090:10:6::1;16333:18:7::0;;;16326:43;-1:-1:-1;;;18102:20:6;::::1;;;16385:19:7::0;;;16378:48;16442:19;;;16435:35;;;18025:8:6;::::1;::::0;:16:::1;::::0;16131:19:7;;18025:117:6::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;18173:16:6;;18203:15:::1;::::0;::::1;::::0;18154:93:::1;::::0;;17018:25:7;;;-1:-1:-1;;;;;18173:16:6;;::::1;17112:2:7::0;17097:18;;17090:43;18191:10:6::1;17149:18:7::0;;;17142:43;17216:2;17201:18;;17194:34;17259:3;17244:19;;17237:35;;;17070:3;17288:19;;17281:35;;;18154:93:6::1;::::0;17005:3:7;16990:19;18154:93:6::1;;;;;;;-1:-1:-1::0;;1740:1:4;2693:22;;-1:-1:-1;;17259:994:6:o;5528:142::-;1166:7:3;1192:6;-1:-1:-1;;;;;1192:6:3;723:10:0;1332:23:3;1324:68;;;;-1:-1:-1;;;1324:68:3;;;;;;;:::i;:::-;5610:23:6;:54;;-1:-1:-1;;;;;;5610:54:6::1;-1:-1:-1::0;;;;;5610:54:6;;;::::1;::::0;;;::::1;::::0;;5528:142::o;19667:127::-;19742:7;19765:23;:12;19781:6;19765:15;:23::i;18838:190::-;-1:-1:-1;;;;;18968:12:6;;18928:7;18968:12;;;:5;:12;;;;;18994:28;18968:12;19015:6;18994:20;:28::i;:::-;18987:35;18838:190;-1:-1:-1;;;;18838:190:6:o;6541:183::-;1166:7:3;1192:6;-1:-1:-1;;;;;1192:6:3;723:10:0;1332:23:3;1324:68;;;;-1:-1:-1;;;1324:68:3;;;;;;;:::i;:::-;6624:4:6::1;6620:99;;;6639:23;:12;6656:5:::0;6639:16:::1;:23::i;:::-;;6541:183:::0;;:::o;6620:99::-:1;6685:26;:12;6705:5:::0;6685:19:::1;:26::i;18661:169::-:0;-1:-1:-1;;;;;18772:12:6;;18732:7;18772:12;;;:5;:12;;;;;18798:26;18772:12;18798:24;:26::i;:::-;18791:33;18661:169;-1:-1:-1;;;18661:169:6:o;19036:199::-;-1:-1:-1;;;;;19166:12:6;;;19126:7;19166:12;;;:5;:12;;;;;;;;19192:28;;;;;:18;;;:28;;;;;19126:7;;19166:12;19192:37;;:35;:37::i;11371:836::-;1784:1:4;2381:7;;:19;2373:63;;;;-1:-1:-1;;;2373:63:4;;;;;;;:::i;:::-;1784:1;2514:7;:18;11479:11:6::1;11464:26:::0;::::1;11456:56;;;::::0;-1:-1:-1;;;11456:56:6;;17529:2:7;11456:56:6::1;::::0;::::1;17511:21:7::0;17568:2;17548:18;;;17541:30;-1:-1:-1;;;17587:18:7;;;17580:47;17644:18;;11456:56:6::1;17327:341:7::0;11456:56:6::1;11577:26;11606:14:::0;;;:5:::1;:14;::::0;;;;11635::::1;::::0;::::1;::::0;-1:-1:-1;;;;;11635:14:6::1;11653:10;11635:28;11627:50;;;;-1:-1:-1::0;;;11627:50:6::1;;;;;;;:::i;:::-;11714:12;11692:8;:19;;;:34;11684:60;;;::::0;-1:-1:-1;;;11684:60:6;;17875:2:7;11684:60:6::1;::::0;::::1;17857:21:7::0;17914:2;17894:18;;;17887:30;-1:-1:-1;;;17933:18:7;;;17926:43;17986:18;;11684:60:6::1;17673:337:7::0;11684:60:6::1;11757:20;11819:4;11798:5;:18;;;11780:8;:15;;;:36;;;;:::i;:::-;:43;;;;:::i;:::-;11757:66;;11830:20;11871:12;11853:8;:15;;;:30;;;;:::i;:::-;11896:15;::::0;::::1;:30:::0;;;11933:19:::1;::::0;::::1;:34:::0;;;12042:16;;12060:7:::1;::::0;11830:53;;-1:-1:-1;12014:68:6::1;::::0;-1:-1:-1;;;;;12042:16:6;;::::1;::::0;12060:7:::1;12069:12:::0;12014:27:::1;:68::i;:::-;12103:15;::::0;::::1;::::0;12120:16;;12150:15:::1;::::0;::::1;::::0;12181:19:::1;::::0;::::1;::::0;12094:107:::1;::::0;;17018:25:7;;;-1:-1:-1;;;;;12120:16:6;;::::1;17112:2:7::0;17097:18;;17090:43;12138:10:6::1;17149:18:7::0;;;17142:43;;;;17216:2;17201:18;;17194:34;17259:3;17244:19;;17237:35;;;17070:3;17288:19;;17281:35;12094:107:6::1;::::0;17005:3:7;16990:19;12094:107:6::1;16731:591:7::0;2783:48:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19802:125::-;19873:4;19893:28;:12;19915:5;19893:21;:28::i;5208:90::-;1166:7:3;1192:6;-1:-1:-1;;;;;1192:6:3;723:10:0;1332:23:3;1324:68;;;;-1:-1:-1;;;1324:68:3;;;;;;;:::i;:::-;5274:7:6::1;:18:::0;;-1:-1:-1;;;;;;5274:18:6::1;-1:-1:-1::0;;;;;5274:18:6;;;::::1;::::0;;;::::1;::::0;;5208:90::o;19243:281::-;19356:16;;:::i;:::-;-1:-1:-1;;;;;19398:12:6;;;19381:14;19398:12;;;:5;:12;;;;;;;;:36;;;;;:26;;;;:36;;;;;:47;;19438:6;19398:39;:47::i;:::-;19452:27;19482:13;;;:5;:13;;;;;;;;;19502:16;;;;;;;;;-1:-1:-1;;;;;19502:16:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19502:16:6;;;;;;;;;19243:281;-1:-1:-1;;;;;19243:281:6:o;7321:3977::-;1784:1:4;2381:7;;:19;2373:63;;;;-1:-1:-1;;;2373:63:4;;;;;;;:::i;:::-;1784:1;2514:7;:18;7555:11:6::1;7540:26:::0;::::1;7532:56;;;::::0;-1:-1:-1;;;7532:56:6;;17529:2:7;7532:56:6::1;::::0;::::1;17511:21:7::0;17568:2;17548:18;;;17541:30;-1:-1:-1;;;17587:18:7;;;17580:47;17644:18;;7532:56:6::1;17327:341:7::0;7532:56:6::1;7671:1;7661:7;:11;7653:36;;;::::0;-1:-1:-1;;;7653:36:6;;18217:2:7;7653:36:6::1;::::0;::::1;18199:21:7::0;18256:2;18236:18;;;18229:30;-1:-1:-1;;;18275:18:7;;;18268:42;18327:18;;7653:36:6::1;18015:336:7::0;7653:36:6::1;7704:12;::::0;:41:::1;::::0;-1:-1:-1;;;7704:41:6;;18530:6:7;18518:19;;7704:41:6::1;::::0;::::1;18500:38:7::0;-1:-1:-1;;;;;7704:12:6;;::::1;::::0;:27:::1;::::0;18473:18:7;;7704:41:6::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7696:61;;;::::0;-1:-1:-1;;;7696:61:6;;18751:2:7;7696:61:6::1;::::0;::::1;18733:21:7::0;18790:1;18770:18;;;18763:29;-1:-1:-1;;;18808:18:7;;;18801:37;18855:18;;7696:61:6::1;18549:330:7::0;7696:61:6::1;7957:14;::::0;7980::::1;::::0;;-1:-1:-1;;;7980:14:6;;;;7911:8;;7865:20:::1;::::0;-1:-1:-1;;;;;7957:14:6;;::::1;::::0;:22:::1;::::0;7980:12;::::1;::::0;::::1;::::0;:14:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:12;:14:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7996:5;-1:-1:-1::0;;;;;7996:12:6::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7957:54;::::0;-1:-1:-1;;;;;;7957:54:6::1;::::0;;;;;;-1:-1:-1;;;;;19370:15:7;;;7957:54:6::1;::::0;::::1;19352:34:7::0;19422:15;;19402:18;;;19395:43;19287:18;;7957:54:6::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7928:83;;8056:8;-1:-1:-1::0;;;;;8026:39:6::1;:18;-1:-1:-1::0;;;;;8026:39:6::1;;8018:61;;;::::0;-1:-1:-1;;;8018:61:6;;19651:2:7;8018:61:6::1;::::0;::::1;19633:21:7::0;19690:1;19670:18;;;19663:29;-1:-1:-1;;;19708:18:7;;;19701:39;19757:18;;8018:61:6::1;19449:332:7::0;8018:61:6::1;8088:86;8120:8;8138:10;8159:4;8166:7;8088:31;:86::i;:::-;-1:-1:-1::0;;;;;8191:23:6;::::1;::::0;;::::1;::::0;:69:::1;;-1:-1:-1::0;8226:19:6;;-1:-1:-1;;;;;8226:19:6::1;8218:42:::0;::::1;8191:69;8187:185;;;8323:18:::0;;8279:19;;:40:::1;::::0;-1:-1:-1;;;8279:40:6;;-1:-1:-1;;;;;363:32:7;;;8279:40:6::1;::::0;::::1;345:51:7::0;8279:19:6;;::::1;::::0;:29:::1;::::0;318:18:7;;8279:40:6::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:62;;8271:93;;;::::0;-1:-1:-1;;;8271:93:6;;20393:2:7;8271:93:6::1;::::0;::::1;20375:21:7::0;20432:2;20412:18;;;20405:30;-1:-1:-1;;;20451:18:7;;;20444:48;20509:18;;8271:93:6::1;20191:342:7::0;8271:93:6::1;8411:33;:12;8433:10;8411:21;:33::i;:::-;8406:1545;;8459:11;8455:1345;;;8521:5;:12:::0;-1:-1:-1;;;;;8548:23:6;::::1;::::0;8544:110:::1;;8612:22:::0;;8638:4:::1;::::0;8605:29:::1;::::0;8638:4;8605:29:::1;:::i;:::-;8595:40;::::0;:6;:40:::1;:::i;:::-;:47;;;;:::i;:::-;8586:56;;8544:110;8685:6;8672:9;:19;8664:43;;;::::0;-1:-1:-1;;;8664:43:6;;14239:2:7;8664:43:6::1;::::0;::::1;14221:21:7::0;14278:2;14258:18;;;14251:30;-1:-1:-1;;;14297:18:7;;;14290:41;14348:18;;8664:43:6::1;14037:335:7::0;8664:43:6::1;8735:6:::0;8756:11;;;::::1;::::0;:38:::1;;-1:-1:-1::0;;;;;;8771:23:6;::::1;::::0;::::1;8756:38;8752:222;;;8856:21:::0;;8825:19:::1;::::0;8880:4:::1;::::0;8847:30:::1;::::0;:6;:30:::1;:::i;:::-;:37;;;;:::i;:::-;8897:31;::::0;8825:59;;-1:-1:-1;;;;;;8897:18:6;::::1;::::0;:31;::::1;;;::::0;8825:59;;8897:31:::1;::::0;;;8825:59;8897:18;:31;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;8941:21:6::1;8951:11:::0;8941:21;::::1;:::i;:::-;;;8796:178;8752:222;8984:7;::::0;:24:::1;::::0;-1:-1:-1;;;;;8984:7:6;;::::1;::::0;:24;::::1;;;::::0;9001:6;;8984:7:::1;:24:::0;:7;:24;9001:6;8984:7;:24;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;8472:546;;8406:1545;;8455:1345;9076:23:::0;;-1:-1:-1;;;;;9114:23:6;::::1;::::0;9110:112:::1;;9180:22:::0;;9206:4:::1;::::0;9173:29:::1;::::0;9206:4;9173:29:::1;:::i;:::-;9162:41;::::0;:7;:41:::1;:::i;:::-;:48;;;;:::i;:::-;9152:58;;9110:112;9272:23:::0;;9232:110:::1;::::0;-1:-1:-1;;;;;9272:23:6::1;9306:10;9327:4;9334:7:::0;9232:31:::1;:110::i;:::-;9357:21:::0;;:26;;::::1;::::0;:53:::1;;-1:-1:-1::0;;;;;;9387:23:6;::::1;::::0;::::1;9357:53;9353:390;;;9473:21:::0;;9441:19:::1;::::0;9497:4:::1;::::0;9463:31:::1;::::0;:7;:31:::1;:::i;:::-;:38;;;;:::i;:::-;9549:23:::0;;9441:60;;-1:-1:-1;9514:84:6::1;::::0;-1:-1:-1;;;;;9549:23:6::1;9575:9:::0;9441:60;9514:26:::1;:84::i;:::-;9647:23:::0;;9611:85:::1;::::0;-1:-1:-1;;;;;9647:23:6::1;9673:9:::0;9684:11;9611:27:::1;:85::i;:::-;9709:22;9720:11:::0;9709:22;::::1;:::i;:::-;;;9412:331;9353:390;9753:23:::0;;:37:::1;::::0;-1:-1:-1;;;9753:37:6;;::::1;::::0;::::1;941:25:7::0;;;-1:-1:-1;;;;;9753:23:6;;::::1;::::0;:28:::1;::::0;914:18:7;;9753:37:6::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;9024:776;8406:1545;;;9817:9;:13:::0;9813:138:::1;;9904:39;::::0;9912:10:::1;::::0;9933:9:::1;9904:39:::0;::::1;;;::::0;::::1;::::0;;;9933:9;9912:10;9904:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9813:138;10016:18:::0;;9983:20:::1;::::0;10037:4:::1;::::0;10006:28:::1;::::0;:7;:28:::1;:::i;:::-;:35;;;;:::i;:::-;9983:58;;10053:11;10052:12;:50;;;;-1:-1:-1::0;10069:33:6::1;:12;10091:10;10069:21;:33::i;:::-;10068:34;10052:50;10048:203;;;10207:28:::0;;10239:4:::1;::::0;10200:35:::1;::::0;10239:4;10200:35:::1;:::i;:::-;10184:52;::::0;:12;:52:::1;:::i;:::-;:59;;;;:::i;:::-;10169:74;;10048:203;10295:7;::::0;10257:60:::1;::::0;10285:8;;-1:-1:-1;;;;;10295:7:6::1;10304:12:::0;10257:27:::1;:60::i;:::-;10324:20;10347:22;10357:12:::0;10347:7;:22:::1;:::i;:::-;10324:45;;10378:27;;:::i;:::-;10433:8;10412:10;:18;;:29;-1:-1:-1::0;;;;;10412:29:6::1;;;-1:-1:-1::0;;;;;10412:29:6::1;;;::::0;::::1;10470:15;10448:10;:19;;:37;;;::::0;::::1;10512:12;10492:10;:17;;:32;;;::::0;::::1;10558:12;10531:10;:24;;:39;;;::::0;::::1;10601:12;10577:10;:21;;:36;;;::::0;::::1;10640:5;;10620:10;:17;;:25;;;::::0;::::1;10671:11;10652:10;:16;;:30;-1:-1:-1::0;;;;;10652:30:6::1;;;-1:-1:-1::0;;;;;10652:30:6::1;;;::::0;::::1;10714:12;10689:10;:22;;:37;;;;;;;;;::::0;::::1;10792:10;10777:5;:12;10783:5;;10777:12;;;;;;;;;;;:25;;;;;;;;;;;;;-1:-1:-1::0;;;;;10777:25:6::1;;;;;-1:-1:-1::0;;;;;10777:25:6::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;10777:25:6::1;;;;;-1:-1:-1::0;;;;;10777:25:6::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10809:26;10826:8;10809:12;:16;;:26;;;;:::i;:::-;-1:-1:-1::0;;;;;;10842:21:6;;::::1;;::::0;;;:11:::1;:21;::::0;;;;;;;10869:5:::1;::::0;10842:33;;::::1;::::0;::::1;::::0;;;;;;;;;;::::1;::::0;10945:18;;::::1;::::0;;:5:::1;:18:::0;;;10970:31:::1;10945:18:::0;10854:8;10970:21:::1;:31::i;:::-;-1:-1:-1::0;;;;;;11051:28:6;::::1;11008:40;11051:28:::0;;;:18:::1;::::0;::::1;:28;::::0;;;;11101:17:::1;::::0;::::1;::::0;11086:33:::1;::::0;11051:28;;11086:14:::1;:33::i;:::-;-1:-1:-1::0;11128:5:6::1;:8:::0;;;:5:::1;:8;::::0;::::1;:::i;:::-;;;;;;11154:138;11164:10;:17;;;11183:8;11193:11;11206:10;:17;;;11225:10;:19;;;11246:10;:21;;;11269:10;:22;;;11154:138;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;1740:1:4;2693:22;;-1:-1:-1;;;;;;;;;;;;7321:3977:6:o;5798:172::-;1166:7:3;1192:6;-1:-1:-1;;;;;1192:6:3;723:10:0;1332:23:3;1324:68;;;;-1:-1:-1;;;1324:68:3;;;;;;;:::i;:::-;5895:19:6;:36;;-1:-1:-1;;;;;;5895:36:6::1;-1:-1:-1::0;;;;;5895:36:6;;;::::1;::::0;;;::::1;::::0;;;5938:18;:26;5798:172::o;2046:240:3:-;1166:7;1192:6;-1:-1:-1;;;;;1192:6:3;723:10:0;1332:23:3;1324:68;;;;-1:-1:-1;;;1324:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;2134:22:3;::::1;2126:73;;;::::0;-1:-1:-1;;;2126:73:3;;21427:2:7;2126:73:3::1;::::0;::::1;21409:21:7::0;21466:2;21446:18;;;21439:30;21505:34;21485:18;;;21478:62;-1:-1:-1;;;21556:18:7;;;21549:36;21602:19;;2126:73:3::1;21225:402:7::0;2126:73:3::1;2235:6;::::0;;2214:38:::1;::::0;-1:-1:-1;;;;;2214:38:3;;::::1;::::0;2235:6;::::1;::::0;2214:38:::1;::::0;::::1;2262:6;:17:::0;;-1:-1:-1;;;;;;2262:17:3::1;-1:-1:-1::0;;;;;2262:17:3;;;::::1;::::0;;;::::1;::::0;;2046:240::o;7981:158:1:-;8055:7;8106:22;8110:3;8122:5;8106:3;:22::i;755:323:5:-;901:51;;;-1:-1:-1;;;;;21890:15:7;;;901:51:5;;;21872:34:7;21942:15;;;21922:18;;;21915:43;21974:18;;;;21967:34;;;901:51:5;;;;;;;;;;21807:18:7;;;;901:51:5;;;;;;;-1:-1:-1;;;;;901:51:5;-1:-1:-1;;;901:51:5;;;890:63;;-1:-1:-1;;;;890:10:5;;;;:63;;901:51;890:63;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;854:99;;;;972:7;:57;;;;-1:-1:-1;984:11:5;;:16;;:44;;;1015:4;1004:24;;;;;;;;;;;;:::i;:::-;964:106;;;;-1:-1:-1;;;964:106:5;;22631:2:7;964:106:5;;;22613:21:7;22670:2;22650:18;;;22643:30;22709:34;22689:18;;;22682:62;-1:-1:-1;;;22760:18:7;;;22753:34;22804:19;;964:106:5;22429:400:7;964:106:5;843:235;;755:323;;;;:::o;453:294::-;581:45;;;-1:-1:-1;;;;;23026:32:7;;;581:45:5;;;23008:51:7;23075:18;;;;23068:34;;;581:45:5;;;;;;;;;;22981:18:7;;;;581:45:5;;;;;;;-1:-1:-1;;;;;581:45:5;-1:-1:-1;;;581:45:5;;;570:57;;-1:-1:-1;;;;570:10:5;;;;:57;;581:45;570:57;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534:93;;;;646:7;:57;;;;-1:-1:-1;658:11:5;;:16;;:44;;;689:4;678:24;;;;;;;;;;;;:::i;:::-;638:101;;;;-1:-1:-1;;;638:101:5;;23315:2:7;638:101:5;;;23297:21:7;23354:2;23334:18;;;23327:30;23393:33;23373:18;;;23366:61;23444:18;;638:101:5;23113:355:7;638:101:5;523:224;;453:294;;;:::o;8696:137:1:-;8766:4;8790:35;8798:3;8818:5;8790:7;:35::i;9151:114::-;9211:7;9238:19;9246:3;4277:18;;4194:109;7023:158;7096:4;7120:53;7128:3;-1:-1:-1;;;;;7148:23:1;;7120:7;:53::i;6695:152::-;6765:4;6789:50;6794:3;-1:-1:-1;;;;;6814:23:1;;6789:4;:50::i;8389:131::-;8456:4;8480:32;8485:3;8505:5;8480:4;:32::i;153:292:5:-;280:45;;;-1:-1:-1;;;;;23026:32:7;;;280:45:5;;;23008:51:7;23075:18;;;;23068:34;;;280:45:5;;;;;;;;;;22981:18:7;;;;280:45:5;;;;;;;-1:-1:-1;;;;;280:45:5;-1:-1:-1;;;280:45:5;;;269:57;;-1:-1:-1;;;;269:10:5;;;;:57;;280:45;269:57;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233:93;;;;345:7;:57;;;;-1:-1:-1;357:11:5;;:16;;:44;;;388:4;377:24;;;;;;;;;;;;:::i;:::-;337:100;;;;-1:-1:-1;;;337:100:5;;23675:2:7;337:100:5;;;23657:21:7;23714:2;23694:18;;;23687:30;23753:32;23733:18;;;23726:60;23803:18;;337:100:5;23473:354:7;7267:167:1;-1:-1:-1;;;;;7401:23:1;;7347:4;4076:19;;;:12;;;:19;;;;;;:24;;7371:55;3979:129;4647:204;4742:18;;4714:7;;4742:26;-1:-1:-1;4734:73:1;;;;-1:-1:-1;;;4734:73:1;;24034:2:7;4734:73:1;;;24016:21:7;24073:2;24053:18;;;24046:30;24112:34;24092:18;;;24085:62;-1:-1:-1;;;24163:18:7;;;24156:32;24205:19;;4734:73:1;23832:398:7;4734:73:1;4825:3;:11;;4837:5;4825:18;;;;;;;;:::i;:::-;;;;;;;;;4818:25;;4647:204;;;;:::o;2349:1544::-;2415:4;2554:19;;;:12;;;:19;;;;;;2590:15;;2586:1300;;2952:21;2976:14;2989:1;2976:10;:14;:::i;:::-;3025:18;;2952:38;;-1:-1:-1;3005:17:1;;3025:22;;3046:1;;3025:22;:::i;:::-;3005:42;;3292:17;3312:3;:11;;3324:9;3312:22;;;;;;;;:::i;:::-;;;;;;;;;3292:42;;3458:9;3429:3;:11;;3441:13;3429:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;3561:17;:13;3577:1;3561:17;:::i;:::-;3535:23;;;;:12;;;:23;;;;;:43;3687:17;;3535:3;;3687:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3782:3;:12;;:19;3795:5;3782:19;;;;;;;;;;;3775:26;;;3825:4;3818:11;;;;;;;;2586:1300;3869:5;3862:12;;;;;1759:414;1822:4;4076:19;;;:12;;;:19;;;;;;1839:327;;-1:-1:-1;1882:23:1;;;;;;;;:11;:23;;;;;;;;;;;;;2065:18;;2043:19;;;:12;;;:19;;;;;;:40;;;;2098:11;;1839:327;-1:-1:-1;2149:5:1;2142:12;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:180:7:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:7;;14:180;-1:-1:-1;14:180:7:o;407:131::-;-1:-1:-1;;;;;482:31:7;;472:42;;462:70;;528:1;525;518:12;462:70;407:131;:::o;543:247::-;602:6;655:2;643:9;634:7;630:23;626:32;623:52;;;671:1;668;661:12;623:52;710:9;697:23;729:31;754:5;729:31;:::i;1246:248::-;1314:6;1322;1375:2;1363:9;1354:7;1350:23;1346:32;1343:52;;;1391:1;1388;1381:12;1343:52;-1:-1:-1;;1414:23:7;;;1484:2;1469:18;;;1456:32;;-1:-1:-1;1246:248:7:o;1499:323::-;1575:6;1583;1636:2;1624:9;1615:7;1611:23;1607:32;1604:52;;;1652:1;1649;1642:12;1604:52;1688:9;1675:23;1665:33;;1748:2;1737:9;1733:18;1720:32;1761:31;1786:5;1761:31;:::i;:::-;1811:5;1801:15;;;1499:323;;;;;:::o;2052:523::-;2156:6;2164;2172;2180;2188;2196;2249:3;2237:9;2228:7;2224:23;2220:33;2217:53;;;2266:1;2263;2256:12;2217:53;-1:-1:-1;;2289:23:7;;;2359:2;2344:18;;2331:32;;-1:-1:-1;2410:2:7;2395:18;;2382:32;;2461:2;2446:18;;2433:32;;-1:-1:-1;2512:3:7;2497:19;;2484:33;;-1:-1:-1;2564:3:7;2549:19;2536:33;;-1:-1:-1;2052:523:7;-1:-1:-1;2052:523:7:o;2580:316::-;2657:6;2665;2673;2726:2;2714:9;2705:7;2701:23;2697:32;2694:52;;;2742:1;2739;2732:12;2694:52;-1:-1:-1;;2765:23:7;;;2835:2;2820:18;;2807:32;;-1:-1:-1;2886:2:7;2871:18;;;2858:32;;2580:316;-1:-1:-1;2580:316:7:o;3128:315::-;3196:6;3204;3257:2;3245:9;3236:7;3232:23;3228:32;3225:52;;;3273:1;3270;3263:12;3225:52;3312:9;3299:23;3331:31;3356:5;3331:31;:::i;:::-;3381:5;3433:2;3418:18;;;;3405:32;;-1:-1:-1;;;3128:315:7:o;4292:118::-;4378:5;4371:13;4364:21;4357:5;4354:32;4344:60;;4400:1;4397;4390:12;4415:382;4480:6;4488;4541:2;4529:9;4520:7;4516:23;4512:32;4509:52;;;4557:1;4554;4547:12;4509:52;4596:9;4583:23;4615:31;4640:5;4615:31;:::i;:::-;4665:5;-1:-1:-1;4722:2:7;4707:18;;4694:32;4735:30;4694:32;4735:30;:::i;4802:388::-;4870:6;4878;4931:2;4919:9;4910:7;4906:23;4902:32;4899:52;;;4947:1;4944;4937:12;4899:52;4986:9;4973:23;5005:31;5030:5;5005:31;:::i;:::-;5055:5;-1:-1:-1;5112:2:7;5097:18;;5084:32;5125:33;5084:32;5125:33;:::i;6398:456::-;6475:6;6483;6491;6544:2;6532:9;6523:7;6519:23;6515:32;6512:52;;;6560:1;6557;6550:12;6512:52;6599:9;6586:23;6618:31;6643:5;6618:31;:::i;:::-;6668:5;-1:-1:-1;6725:2:7;6710:18;;6697:32;6738:33;6697:32;6738:33;:::i;:::-;6398:456;;6790:7;;-1:-1:-1;;;6844:2:7;6829:18;;;;6816:32;;6398:456::o;7611:988::-;7736:6;7744;7752;7760;7768;7776;7784;7837:3;7825:9;7816:7;7812:23;7808:33;7805:53;;;7854:1;7851;7844:12;7805:53;7893:9;7880:23;7912:31;7937:5;7912:31;:::i;:::-;7962:5;-1:-1:-1;8014:2:7;7999:18;;7986:32;;-1:-1:-1;8065:2:7;8050:18;;8037:32;;-1:-1:-1;8121:2:7;8106:18;;8093:32;8134:33;8093:32;8134:33;:::i;:::-;8186:7;-1:-1:-1;8245:3:7;8230:19;;8217:33;8259:30;8217:33;8259:30;:::i;:::-;8308:7;-1:-1:-1;8367:3:7;8352:19;;8339:33;8381;8339;8381;:::i;:::-;8433:7;-1:-1:-1;8492:3:7;8477:19;;8464:33;8541:6;8528:20;;8516:33;;8506:61;;8563:1;8560;8553:12;8506:61;8586:7;8576:17;;;7611:988;;;;;;;;;;:::o;9168:356::-;9370:2;9352:21;;;9389:18;;;9382:30;9448:34;9443:2;9428:18;;9421:62;9515:2;9500:18;;9168:356::o;9529:355::-;9731:2;9713:21;;;9770:2;9750:18;;;9743:30;9809:33;9804:2;9789:18;;9782:61;9875:2;9860:18;;9529:355::o;10229:127::-;10290:10;10285:3;10281:20;10278:1;10271:31;10321:4;10318:1;10311:15;10345:4;10342:1;10335:15;10361:168;10434:9;;;10465;;10482:15;;;10476:22;;10462:37;10452:71;;10503:18;;:::i;10534:217::-;10574:1;10600;10590:132;;10644:10;10639:3;10635:20;10632:1;10625:31;10679:4;10676:1;10669:15;10707:4;10704:1;10697:15;10590:132;-1:-1:-1;10736:9:7;;10534:217::o;10756:128::-;10823:9;;;10844:11;;;10841:37;;;10858:18;;:::i;10889:125::-;10954:9;;;10975:10;;;10972:36;;;10988:18;;:::i;12039:332::-;12241:2;12223:21;;;12280:1;12260:18;;;12253:29;-1:-1:-1;;;12313:2:7;12298:18;;12291:39;12362:2;12347:18;;12039:332::o;14377:135::-;14416:3;14437:17;;;14434:43;;14457:18;;:::i;:::-;-1:-1:-1;14504:1:7;14493:13;;14377:135::o;14517:674::-;14830:25;;;-1:-1:-1;;;;;14929:15:7;;;14924:2;14909:18;;14902:43;14981:15;;;;14976:2;14961:18;;14954:43;15028:2;15013:18;;15006:34;;;;15071:3;15056:19;;15049:35;14882:3;15100:19;;15093:35;;;;15177:6;15165:19;15159:3;15144:19;;15137:48;14817:3;14802:19;;14517:674::o;16481:245::-;16548:6;16601:2;16589:9;16580:7;16576:23;16572:32;16569:52;;;16617:1;16614;16607:12;16569:52;16649:9;16643:16;16668:28;16690:5;16668:28;:::i;18884:251::-;18954:6;19007:2;18995:9;18986:7;18982:23;18978:32;18975:52;;;19023:1;19020;19013:12;18975:52;19055:9;19049:16;19074:31;19099:5;19074:31;:::i;20002:184::-;20072:6;20125:2;20113:9;20104:7;20100:23;20096:32;20093:52;;;20141:1;20138;20131:12;20093:52;-1:-1:-1;20164:16:7;;20002:184;-1:-1:-1;20002:184:7:o;22012:412::-;22141:3;22179:6;22173:13;22204:1;22214:129;22228:6;22225:1;22222:13;22214:129;;;22326:4;22310:14;;;22306:25;;22300:32;22287:11;;;22280:53;22243:12;22214:129;;;-1:-1:-1;22398:1:7;22362:16;;22387:13;;;-1:-1:-1;22362:16:7;22012:412;-1:-1:-1;22012:412:7:o;24235:127::-;24296:10;24291:3;24287:20;24284:1;24277:31;24327:4;24324:1;24317:15;24351:4;24348:1;24341:15;24367:127;24428:10;24423:3;24419:20;24416:1;24409:31;24459:4;24456:1;24449:15;24483:4;24480:1;24473:15
Swarm Source
ipfs://4649ae26504893fcbf06d62772e828ba8f5bb62add4c7038f7b4d9e1b702e06d
Loading...
Loading
OVERVIEW
Trustless smart contract available for locking LP (liquidity providers) tokens for pairs created on top of SushiSwap. The UNCX Network team has deployed this contract.Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.