Source Code
Latest 8 from a total of 8 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Deposit | 53433067 | 652 days ago | IN | 0 ETH | 0.0000054 | ||||
| Deposit | 53348422 | 653 days ago | IN | 0 ETH | 0.00000211 | ||||
| Withdraw | 53230066 | 653 days ago | IN | 0 ETH | 0.00001086 | ||||
| Deposit | 52939606 | 654 days ago | IN | 0 ETH | 0.00000141 | ||||
| Set Delay Thresh... | 51869306 | 657 days ago | IN | 0 ETH | 0.00000348 | ||||
| Set Epoch Volume... | 51869287 | 657 days ago | IN | 0 ETH | 0.00000351 | ||||
| Set Max Deposit | 51869268 | 657 days ago | IN | 0 ETH | 0.00000349 | ||||
| Set Min Deposit | 51869249 | 657 days ago | IN | 0 ETH | 0.0000035 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
OriginalTokenVaultV2
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../interfaces/ISigsVerifier.sol";
import "../interfaces/IWETH.sol";
import "../libraries/PbPegged.sol";
import "../safeguard/Pauser.sol";
import "../safeguard/VolumeControl.sol";
import "../safeguard/DelayedTransfer.sol";
/**
* @title the vault to deposit and withdraw original tokens
* @dev Work together with PeggedTokenBridge contracts deployed at remote chains
*/
contract OriginalTokenVaultV2 is ReentrancyGuard, Pauser, VolumeControl, DelayedTransfer {
using SafeERC20 for IERC20;
ISigsVerifier public immutable sigsVerifier;
mapping(bytes32 => bool) public records;
mapping(address => uint256) public minDeposit;
mapping(address => uint256) public maxDeposit;
address public nativeWrap;
event Deposited(
bytes32 depositId,
address depositor,
address token,
uint256 amount,
uint64 mintChainId,
address mintAccount,
uint64 nonce
);
event Withdrawn(
bytes32 withdrawId,
address receiver,
address token,
uint256 amount,
// ref_chain_id defines the reference chain ID, taking values of:
// 1. The common case of burn-withdraw: the chain ID on which the corresponding burn happened;
// 2. Pegbridge fee claim: zero / not applicable;
// 3. Refund for wrong deposit: this chain ID on which the deposit happened
uint64 refChainId,
// ref_id defines a unique reference ID, taking values of:
// 1. The common case of burn-withdraw: the burn ID on the remote chain;
// 2. Pegbridge fee claim: a per-account nonce;
// 3. Refund for wrong deposit: the deposit ID on this chain
bytes32 refId,
address burnAccount
);
event MinDepositUpdated(address token, uint256 amount);
event MaxDepositUpdated(address token, uint256 amount);
constructor(ISigsVerifier _sigsVerifier) {
sigsVerifier = _sigsVerifier;
}
/**
* @notice Lock original tokens to trigger cross-chain mint of pegged tokens at a remote chain's PeggedTokenBridge.
* NOTE: This function DOES NOT SUPPORT fee-on-transfer / rebasing tokens.
* @param _token The original token address.
* @param _amount The amount to deposit.
* @param _mintChainId The destination chain ID to mint tokens.
* @param _mintAccount The destination account to receive the minted pegged tokens.
* @param _nonce A number input to guarantee unique depositId. Can be timestamp in practice.
*/
function deposit(
address _token,
uint256 _amount,
uint64 _mintChainId,
address _mintAccount,
uint64 _nonce
) external nonReentrant whenNotPaused returns (bytes32) {
bytes32 depId = _deposit(_token, _amount, _mintChainId, _mintAccount, _nonce);
IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount);
emit Deposited(depId, msg.sender, _token, _amount, _mintChainId, _mintAccount, _nonce);
return depId;
}
/**
* @notice Lock native token as original token to trigger cross-chain mint of pegged tokens at a remote chain's
* PeggedTokenBridge.
* @param _amount The amount to deposit.
* @param _mintChainId The destination chain ID to mint tokens.
* @param _mintAccount The destination account to receive the minted pegged tokens.
* @param _nonce A number input to guarantee unique depositId. Can be timestamp in practice.
*/
function depositNative(
uint256 _amount,
uint64 _mintChainId,
address _mintAccount,
uint64 _nonce
) external payable nonReentrant whenNotPaused returns (bytes32) {
require(msg.value == _amount, "Amount mismatch");
require(nativeWrap != address(0), "Native wrap not set");
bytes32 depId = _deposit(nativeWrap, _amount, _mintChainId, _mintAccount, _nonce);
IWETH(nativeWrap).deposit{value: _amount}();
emit Deposited(depId, msg.sender, nativeWrap, _amount, _mintChainId, _mintAccount, _nonce);
return depId;
}
function _deposit(
address _token,
uint256 _amount,
uint64 _mintChainId,
address _mintAccount,
uint64 _nonce
) private returns (bytes32) {
require(_amount > minDeposit[_token], "amount too small");
require(maxDeposit[_token] == 0 || _amount <= maxDeposit[_token], "amount too large");
bytes32 depId = keccak256(
// len = 20 + 20 + 32 + 8 + 20 + 8 + 8 + 20 = 136
abi.encodePacked(
msg.sender,
_token,
_amount,
_mintChainId,
_mintAccount,
_nonce,
uint64(block.chainid),
address(this)
)
);
require(records[depId] == false, "record exists");
records[depId] = true;
return depId;
}
/**
* @notice Withdraw locked original tokens triggered by a burn at a remote chain's PeggedTokenBridge.
* @param _request The serialized Withdraw protobuf.
* @param _sigs The list of signatures sorted by signing addresses in ascending order. A relay must be signed-off by
* +2/3 of the bridge's current signing power to be delivered.
* @param _signers The sorted list of signers.
* @param _powers The signing powers of the signers.
*/
function withdraw(
bytes calldata _request,
bytes[] calldata _sigs,
address[] calldata _signers,
uint256[] calldata _powers
) external whenNotPaused returns (bytes32) {
bytes32 domain = keccak256(abi.encodePacked(block.chainid, address(this), "Withdraw"));
sigsVerifier.verifySigs(abi.encodePacked(domain, _request), _sigs, _signers, _powers);
PbPegged.Withdraw memory request = PbPegged.decWithdraw(_request);
bytes32 wdId = keccak256(
// len = 20 + 20 + 32 + 20 + 8 + 32 + 20 = 152
abi.encodePacked(
request.receiver,
request.token,
request.amount,
request.burnAccount,
request.refChainId,
request.refId,
address(this)
)
);
require(records[wdId] == false, "record exists");
records[wdId] = true;
_updateVolume(request.token, request.amount);
uint256 delayThreshold = delayThresholds[request.token];
if (delayThreshold > 0 && request.amount > delayThreshold) {
_addDelayedTransfer(wdId, request.receiver, request.token, request.amount);
} else {
_sendToken(request.receiver, request.token, request.amount);
}
emit Withdrawn(
wdId,
request.receiver,
request.token,
request.amount,
request.refChainId,
request.refId,
request.burnAccount
);
return wdId;
}
function executeDelayedTransfer(bytes32 id) external whenNotPaused {
delayedTransfer memory transfer = _executeDelayedTransfer(id);
_sendToken(transfer.receiver, transfer.token, transfer.amount);
}
function setMinDeposit(address[] calldata _tokens, uint256[] calldata _amounts) external onlyGovernor {
require(_tokens.length == _amounts.length, "length mismatch");
for (uint256 i = 0; i < _tokens.length; i++) {
minDeposit[_tokens[i]] = _amounts[i];
emit MinDepositUpdated(_tokens[i], _amounts[i]);
}
}
function setMaxDeposit(address[] calldata _tokens, uint256[] calldata _amounts) external onlyGovernor {
require(_tokens.length == _amounts.length, "length mismatch");
for (uint256 i = 0; i < _tokens.length; i++) {
maxDeposit[_tokens[i]] = _amounts[i];
emit MaxDepositUpdated(_tokens[i], _amounts[i]);
}
}
function setWrap(address _weth) external onlyOwner {
nativeWrap = _weth;
}
function _sendToken(
address _receiver,
address _token,
uint256 _amount
) private {
if (_token == nativeWrap) {
// withdraw then transfer native to receiver
IWETH(nativeWrap).withdraw(_amount);
(bool sent, ) = _receiver.call{value: _amount, gas: 50000}("");
require(sent, "failed to send native token");
} else {
IERC20(_token).safeTransfer(_receiver, _amount);
}
}
receive() external payable {}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity >=0.8.0;
interface ISigsVerifier {
/**
* @notice Verifies that a message is signed by a quorum among the signers.
* @param _msg signed message
* @param _sigs list of signatures sorted by signer addresses in ascending order
* @param _signers sorted list of current signers
* @param _powers powers of current signers
*/
function verifySigs(
bytes memory _msg,
bytes[] calldata _sigs,
address[] calldata _signers,
uint256[] calldata _powers
) external view;
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity >=0.8.0;
interface IWETH {
function deposit() external payable;
function withdraw(uint256) external;
}// SPDX-License-Identifier: GPL-3.0-only
// Code generated by protoc-gen-sol. DO NOT EDIT.
// source: contracts/libraries/proto/pegged.proto
pragma solidity 0.8.17;
import "./Pb.sol";
library PbPegged {
using Pb for Pb.Buffer; // so we can call Pb funcs on Buffer obj
struct Mint {
address token; // tag: 1
address account; // tag: 2
uint256 amount; // tag: 3
address depositor; // tag: 4
uint64 refChainId; // tag: 5
bytes32 refId; // tag: 6
} // end struct Mint
function decMint(bytes memory raw) internal pure returns (Mint memory m) {
Pb.Buffer memory buf = Pb.fromBytes(raw);
uint256 tag;
Pb.WireType wire;
while (buf.hasMore()) {
(tag, wire) = buf.decKey();
if (false) {}
// solidity has no switch/case
else if (tag == 1) {
m.token = Pb._address(buf.decBytes());
} else if (tag == 2) {
m.account = Pb._address(buf.decBytes());
} else if (tag == 3) {
m.amount = Pb._uint256(buf.decBytes());
} else if (tag == 4) {
m.depositor = Pb._address(buf.decBytes());
} else if (tag == 5) {
m.refChainId = uint64(buf.decVarint());
} else if (tag == 6) {
m.refId = Pb._bytes32(buf.decBytes());
} else {
buf.skipValue(wire);
} // skip value of unknown tag
}
} // end decoder Mint
struct Withdraw {
address token; // tag: 1
address receiver; // tag: 2
uint256 amount; // tag: 3
address burnAccount; // tag: 4
uint64 refChainId; // tag: 5
bytes32 refId; // tag: 6
} // end struct Withdraw
function decWithdraw(bytes memory raw) internal pure returns (Withdraw memory m) {
Pb.Buffer memory buf = Pb.fromBytes(raw);
uint256 tag;
Pb.WireType wire;
while (buf.hasMore()) {
(tag, wire) = buf.decKey();
if (false) {}
// solidity has no switch/case
else if (tag == 1) {
m.token = Pb._address(buf.decBytes());
} else if (tag == 2) {
m.receiver = Pb._address(buf.decBytes());
} else if (tag == 3) {
m.amount = Pb._uint256(buf.decBytes());
} else if (tag == 4) {
m.burnAccount = Pb._address(buf.decBytes());
} else if (tag == 5) {
m.refChainId = uint64(buf.decVarint());
} else if (tag == 6) {
m.refId = Pb._bytes32(buf.decBytes());
} else {
buf.skipValue(wire);
} // skip value of unknown tag
}
} // end decoder Withdraw
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.17;
// runtime proto sol library
library Pb {
enum WireType {
Varint,
Fixed64,
LengthDelim,
StartGroup,
EndGroup,
Fixed32
}
struct Buffer {
uint256 idx; // the start index of next read. when idx=b.length, we're done
bytes b; // hold serialized proto msg, readonly
}
// create a new in-memory Buffer object from raw msg bytes
function fromBytes(bytes memory raw) internal pure returns (Buffer memory buf) {
buf.b = raw;
buf.idx = 0;
}
// whether there are unread bytes
function hasMore(Buffer memory buf) internal pure returns (bool) {
return buf.idx < buf.b.length;
}
// decode current field number and wiretype
function decKey(Buffer memory buf) internal pure returns (uint256 tag, WireType wiretype) {
uint256 v = decVarint(buf);
tag = v / 8;
wiretype = WireType(v & 7);
}
// count tag occurrences, return an array due to no memory map support
// have to create array for (maxtag+1) size. cnts[tag] = occurrences
// should keep buf.idx unchanged because this is only a count function
function cntTags(Buffer memory buf, uint256 maxtag) internal pure returns (uint256[] memory cnts) {
uint256 originalIdx = buf.idx;
cnts = new uint256[](maxtag + 1); // protobuf's tags are from 1 rather than 0
uint256 tag;
WireType wire;
while (hasMore(buf)) {
(tag, wire) = decKey(buf);
cnts[tag] += 1;
skipValue(buf, wire);
}
buf.idx = originalIdx;
}
// read varint from current buf idx, move buf.idx to next read, return the int value
function decVarint(Buffer memory buf) internal pure returns (uint256 v) {
bytes10 tmp; // proto int is at most 10 bytes (7 bits can be used per byte)
bytes memory bb = buf.b; // get buf.b mem addr to use in assembly
v = buf.idx; // use v to save one additional uint variable
assembly {
tmp := mload(add(add(bb, 32), v)) // load 10 bytes from buf.b[buf.idx] to tmp
}
uint256 b; // store current byte content
v = 0; // reset to 0 for return value
for (uint256 i = 0; i < 10; i++) {
assembly {
b := byte(i, tmp) // don't use tmp[i] because it does bound check and costs extra
}
v |= (b & 0x7F) << (i * 7);
if (b & 0x80 == 0) {
buf.idx += i + 1;
return v;
}
}
revert(); // i=10, invalid varint stream
}
// read length delimited field and return bytes
function decBytes(Buffer memory buf) internal pure returns (bytes memory b) {
uint256 len = decVarint(buf);
uint256 end = buf.idx + len;
require(end <= buf.b.length); // avoid overflow
b = new bytes(len);
bytes memory bufB = buf.b; // get buf.b mem addr to use in assembly
uint256 bStart;
uint256 bufBStart = buf.idx;
assembly {
bStart := add(b, 32)
bufBStart := add(add(bufB, 32), bufBStart)
}
for (uint256 i = 0; i < len; i += 32) {
assembly {
mstore(add(bStart, i), mload(add(bufBStart, i)))
}
}
buf.idx = end;
}
// return packed ints
function decPacked(Buffer memory buf) internal pure returns (uint256[] memory t) {
uint256 len = decVarint(buf);
uint256 end = buf.idx + len;
require(end <= buf.b.length); // avoid overflow
// array in memory must be init w/ known length
// so we have to create a tmp array w/ max possible len first
uint256[] memory tmp = new uint256[](len);
uint256 i = 0; // count how many ints are there
while (buf.idx < end) {
tmp[i] = decVarint(buf);
i++;
}
t = new uint256[](i); // init t with correct length
for (uint256 j = 0; j < i; j++) {
t[j] = tmp[j];
}
return t;
}
// move idx pass current value field, to beginning of next tag or msg end
function skipValue(Buffer memory buf, WireType wire) internal pure {
if (wire == WireType.Varint) {
decVarint(buf);
} else if (wire == WireType.LengthDelim) {
uint256 len = decVarint(buf);
buf.idx += len; // skip len bytes value data
require(buf.idx <= buf.b.length); // avoid overflow
} else {
revert();
} // unsupported wiretype
}
// type conversion help utils
function _bool(uint256 x) internal pure returns (bool v) {
return x != 0;
}
function _uint256(bytes memory b) internal pure returns (uint256 v) {
require(b.length <= 32); // b's length must be smaller than or equal to 32
assembly {
v := mload(add(b, 32))
} // load all 32bytes to v
v = v >> (8 * (32 - b.length)); // only first b.length is valid
}
function _address(bytes memory b) internal pure returns (address v) {
v = _addressPayable(b);
}
function _addressPayable(bytes memory b) internal pure returns (address payable v) {
require(b.length == 20);
//load 32bytes then shift right 12 bytes
assembly {
v := div(mload(add(b, 32)), 0x1000000000000000000000000)
}
}
function _bytes32(bytes memory b) internal pure returns (bytes32 v) {
require(b.length == 32);
assembly {
v := mload(add(b, 32))
}
}
// uint[] to uint8[]
function uint8s(uint256[] memory arr) internal pure returns (uint8[] memory t) {
t = new uint8[](arr.length);
for (uint256 i = 0; i < t.length; i++) {
t[i] = uint8(arr[i]);
}
}
function uint32s(uint256[] memory arr) internal pure returns (uint32[] memory t) {
t = new uint32[](arr.length);
for (uint256 i = 0; i < t.length; i++) {
t[i] = uint32(arr[i]);
}
}
function uint64s(uint256[] memory arr) internal pure returns (uint64[] memory t) {
t = new uint64[](arr.length);
for (uint256 i = 0; i < t.length; i++) {
t[i] = uint64(arr[i]);
}
}
function bools(uint256[] memory arr) internal pure returns (bool[] memory t) {
t = new bool[](arr.length);
for (uint256 i = 0; i < t.length; i++) {
t[i] = arr[i] != 0;
}
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.17;
import "@openzeppelin/contracts/security/Pausable.sol";
import "./Ownable.sol";
abstract contract Pauser is Ownable, Pausable {
mapping(address => bool) public pausers;
event PauserAdded(address account);
event PauserRemoved(address account);
constructor() {
_addPauser(msg.sender);
}
modifier onlyPauser() {
require(isPauser(msg.sender), "Caller is not pauser");
_;
}
function pause() public onlyPauser {
_pause();
}
function unpause() public onlyPauser {
_unpause();
}
function isPauser(address account) public view returns (bool) {
return pausers[account];
}
function addPauser(address account) public onlyOwner {
_addPauser(account);
}
function removePauser(address account) public onlyOwner {
_removePauser(account);
}
function renouncePauser() public {
_removePauser(msg.sender);
}
function _addPauser(address account) private {
require(!isPauser(account), "Account is already pauser");
pausers[account] = true;
emit PauserAdded(account);
}
function _removePauser(address account) private {
require(isPauser(account), "Account is not pauser");
pausers[account] = false;
emit PauserRemoved(account);
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*
* This adds a normal func that setOwner if _owner is address(0). So we can't allow
* renounceOwnership. So we can support Proxy based upgradable contract
*/
abstract contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(msg.sender);
}
/**
* @dev Only to be called by inherit contracts, in their init func called by Proxy
* we require _owner == address(0), which is only possible when it's a delegateCall
* because constructor sets _owner in contract state.
*/
function initOwner() internal {
require(_owner == address(0), "owner already set");
_setOwner(msg.sender);
}
/**
* @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() == msg.sender, "Ownable: caller is not the owner");
_;
}
/**
* @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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.17;
import "./Governor.sol";
abstract contract VolumeControl is Governor {
uint256 public epochLength; // seconds
mapping(address => uint256) public epochVolumes; // key is token
mapping(address => uint256) public epochVolumeCaps; // key is token
mapping(address => uint256) public lastOpTimestamps; // key is token
event EpochLengthUpdated(uint256 length);
event EpochVolumeUpdated(address token, uint256 cap);
function setEpochLength(uint256 _length) external onlyGovernor {
epochLength = _length;
emit EpochLengthUpdated(_length);
}
function setEpochVolumeCaps(address[] calldata _tokens, uint256[] calldata _caps) external onlyGovernor {
require(_tokens.length == _caps.length, "length mismatch");
for (uint256 i = 0; i < _tokens.length; i++) {
epochVolumeCaps[_tokens[i]] = _caps[i];
emit EpochVolumeUpdated(_tokens[i], _caps[i]);
}
}
function _updateVolume(address _token, uint256 _amount) internal {
if (epochLength == 0) {
return;
}
uint256 cap = epochVolumeCaps[_token];
if (cap == 0) {
return;
}
uint256 volume = epochVolumes[_token];
uint256 timestamp = block.timestamp;
uint256 epochStartTime = (timestamp / epochLength) * epochLength;
if (lastOpTimestamps[_token] < epochStartTime) {
volume = _amount;
} else {
volume += _amount;
}
require(volume <= cap, "volume exceeds cap");
epochVolumes[_token] = volume;
lastOpTimestamps[_token] = timestamp;
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.17;
import "./Ownable.sol";
abstract contract Governor is Ownable {
mapping(address => bool) public governors;
event GovernorAdded(address account);
event GovernorRemoved(address account);
modifier onlyGovernor() {
require(isGovernor(msg.sender), "Caller is not governor");
_;
}
constructor() {
_addGovernor(msg.sender);
}
function isGovernor(address _account) public view returns (bool) {
return governors[_account];
}
function addGovernor(address _account) public onlyOwner {
_addGovernor(_account);
}
function removeGovernor(address _account) public onlyOwner {
_removeGovernor(_account);
}
function renounceGovernor() public {
_removeGovernor(msg.sender);
}
function _addGovernor(address _account) private {
require(!isGovernor(_account), "Account is already governor");
governors[_account] = true;
emit GovernorAdded(_account);
}
function _removeGovernor(address _account) private {
require(isGovernor(_account), "Account is not governor");
governors[_account] = false;
emit GovernorRemoved(_account);
}
}// SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.8.17;
import "./Governor.sol";
abstract contract DelayedTransfer is Governor {
struct delayedTransfer {
address receiver;
address token;
uint256 amount;
uint256 timestamp;
}
mapping(bytes32 => delayedTransfer) public delayedTransfers;
mapping(address => uint256) public delayThresholds;
uint256 public delayPeriod; // in seconds
event DelayedTransferAdded(bytes32 id);
event DelayedTransferExecuted(bytes32 id, address receiver, address token, uint256 amount);
event DelayPeriodUpdated(uint256 period);
event DelayThresholdUpdated(address token, uint256 threshold);
function setDelayThresholds(address[] calldata _tokens, uint256[] calldata _thresholds) external onlyGovernor {
require(_tokens.length == _thresholds.length, "length mismatch");
for (uint256 i = 0; i < _tokens.length; i++) {
delayThresholds[_tokens[i]] = _thresholds[i];
emit DelayThresholdUpdated(_tokens[i], _thresholds[i]);
}
}
function setDelayPeriod(uint256 _period) external onlyGovernor {
delayPeriod = _period;
emit DelayPeriodUpdated(_period);
}
function _addDelayedTransfer(
bytes32 id,
address receiver,
address token,
uint256 amount
) internal {
require(delayedTransfers[id].timestamp == 0, "delayed transfer already exists");
delayedTransfers[id] = delayedTransfer({
receiver: receiver,
token: token,
amount: amount,
timestamp: block.timestamp
});
emit DelayedTransferAdded(id);
}
// caller needs to do the actual token transfer
function _executeDelayedTransfer(bytes32 id) internal returns (delayedTransfer memory) {
delayedTransfer memory transfer = delayedTransfers[id];
require(transfer.timestamp > 0, "delayed transfer not exist");
require(block.timestamp > transfer.timestamp + delayPeriod, "delayed transfer still locked");
delete delayedTransfers[id];
emit DelayedTransferExecuted(id, transfer.receiver, transfer.token, transfer.amount);
return transfer;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
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 making 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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
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) {
return msg.data;
}
}{
"metadata": {
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 800
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract ISigsVerifier","name":"_sigsVerifier","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"period","type":"uint256"}],"name":"DelayPeriodUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"DelayThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"DelayedTransferAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DelayedTransferExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"depositId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"mintChainId","type":"uint64"},{"indexed":false,"internalType":"address","name":"mintAccount","type":"address"},{"indexed":false,"internalType":"uint64","name":"nonce","type":"uint64"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"length","type":"uint256"}],"name":"EpochLengthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"EpochVolumeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"GovernorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"GovernorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxDepositUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MinDepositUpdated","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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"withdrawId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"refChainId","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"refId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"burnAccount","type":"address"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delayPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delayThresholds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"delayedTransfers","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint64","name":"_mintChainId","type":"uint64"},{"internalType":"address","name":"_mintAccount","type":"address"},{"internalType":"uint64","name":"_nonce","type":"uint64"}],"name":"deposit","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint64","name":"_mintChainId","type":"uint64"},{"internalType":"address","name":"_mintAccount","type":"address"},{"internalType":"uint64","name":"_nonce","type":"uint64"}],"name":"depositNative","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"epochLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"epochVolumeCaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"epochVolumes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"executeDelayedTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"governors","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isGovernor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastOpTimestamps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeWrap","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pausers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"records","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removePauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renouncePauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_period","type":"uint256"}],"name":"setDelayPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_thresholds","type":"uint256[]"}],"name":"setDelayThresholds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_length","type":"uint256"}],"name":"setEpochLength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_caps","type":"uint256[]"}],"name":"setEpochVolumeCaps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setMaxDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setMinDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_weth","type":"address"}],"name":"setWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sigsVerifier","outputs":[{"internalType":"contract ISigsVerifier","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_request","type":"bytes"},{"internalType":"bytes[]","name":"_sigs","type":"bytes[]"},{"internalType":"address[]","name":"_signers","type":"address[]"},{"internalType":"uint256[]","name":"_powers","type":"uint256[]"}],"name":"withdraw","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a06040523480156200001157600080fd5b506040516200375a3803806200375a833981016040819052620000349162000255565b6001600055620000443362000079565b6001805460ff60a01b191690556200005c33620000cb565b620000673362000195565b6001600160a01b031660805262000287565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03811660009081526002602052604090205460ff16156200013a5760405162461bcd60e51b815260206004820152601960248201527f4163636f756e7420697320616c7265616479207061757365720000000000000060448201526064015b60405180910390fd5b6001600160a01b038116600081815260026020908152604091829020805460ff1916600117905590519182527f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f891015b60405180910390a150565b6001600160a01b03811660009081526003602052604090205460ff1615620002005760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920676f7665726e6f720000000000604482015260640162000131565b6001600160a01b038116600081815260036020908152604091829020805460ff1916600117905590519182527fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b591016200018a565b6000602082840312156200026857600080fd5b81516001600160a01b03811681146200028057600080fd5b9392505050565b6080516134b0620002aa60003960008181610752015261178401526134b06000f3fe6080604052600436106102885760003560e01c80636b2c0f5511610153578063adc0d57f116100cb578063e3eece261161007f578063eecdac8811610064578063eecdac88146107f2578063f2fde38b14610812578063f83213831461083257600080fd5b8063e3eece2614610789578063e43581b8146107b957600080fd5b8063b5f2bc47116100b0578063b5f2bc4714610713578063ccf2683b14610740578063e026049c1461077457600080fd5b8063adc0d57f14610683578063b1c94d94146106fd57600080fd5b80638456cb59116101225780639e25fc5c116101075780639e25fc5c146106235780639ff9001a14610643578063a21a92801461066357600080fd5b80638456cb59146105f05780638da5cb5b1461060557600080fd5b80636b2c0f551461056b5780636ef8d66d1461058b57806380f51c12146105a057806382dc1ec4146105d057600080fd5b8063402d267d1161020157806354eea796116101b55780635c975abb1161019a5780635c975abb146104ff5780635ec2fa261461051e57806360216b001461053e57600080fd5b806354eea796146104c957806357d775f8146104e957600080fd5b806346fbf68e116101e657806346fbf68e1461044357806347b16c6c1461047c57806352532faa1461049c57600080fd5b8063402d267d146103de578063457bfa2f1461040b57600080fd5b8063303b6442116102585780633c4a25d01161023d5780633c4a25d0146103895780633d572107146103a95780633f4ba83a146103c957600080fd5b8063303b64421461033c5780633c29f8391461035c57600080fd5b8062a95fd71461029457806301e64725146102ba57806317bdbae5146102fa578063234636241461031c57600080fd5b3661028f57005b600080fd5b6102a76102a2366004612ed2565b61085f565b6040519081526020015b60405180910390f35b3480156102c657600080fd5b506102ea6102d5366004612f1f565b600b6020526000908152604090205460ff1681565b60405190151581526020016102b1565b34801561030657600080fd5b5061031a610315366004612f84565b610ac4565b005b34801561032857600080fd5b506102a7610337366004612ff0565b610c62565b34801561034857600080fd5b5061031a610357366004612f84565b610dac565b34801561036857600080fd5b506102a761037736600461304e565b600c6020526000908152604090205481565b34801561039557600080fd5b5061031a6103a436600461304e565b610f43565b3480156103b557600080fd5b5061031a6103c4366004612f1f565b610fb8565b3480156103d557600080fd5b5061031a61104c565b3480156103ea57600080fd5b506102a76103f936600461304e565b600d6020526000908152604090205481565b34801561041757600080fd5b50600e5461042b906001600160a01b031681565b6040516001600160a01b0390911681526020016102b1565b34801561044f57600080fd5b506102ea61045e36600461304e565b6001600160a01b031660009081526002602052604090205460ff1690565b34801561048857600080fd5b5061031a610497366004612f84565b6110b5565b3480156104a857600080fd5b506102a76104b736600461304e565b60096020526000908152604090205481565b3480156104d557600080fd5b5061031a6104e4366004612f1f565b61124c565b3480156104f557600080fd5b506102a760045481565b34801561050b57600080fd5b50600154600160a01b900460ff166102ea565b34801561052a57600080fd5b5061031a610539366004612f84565b6112d9565b34801561054a57600080fd5b506102a761055936600461304e565b60056020526000908152604090205481565b34801561057757600080fd5b5061031a61058636600461304e565b611470565b34801561059757600080fd5b5061031a6114e2565b3480156105ac57600080fd5b506102ea6105bb36600461304e565b60026020526000908152604090205460ff1681565b3480156105dc57600080fd5b5061031a6105eb36600461304e565b6114eb565b3480156105fc57600080fd5b5061031a61155d565b34801561061157600080fd5b506001546001600160a01b031661042b565b34801561062f57600080fd5b5061031a61063e366004612f1f565b6115c4565b34801561064f57600080fd5b5061031a61065e36600461304e565b611639565b34801561066f57600080fd5b506102a761067e366004613069565b6116c4565b34801561068f57600080fd5b506106d261069e366004612f1f565b60086020526000908152604090208054600182015460028301546003909301546001600160a01b0392831693919092169184565b604080516001600160a01b0395861681529490931660208501529183015260608201526080016102b1565b34801561070957600080fd5b506102a7600a5481565b34801561071f57600080fd5b506102a761072e36600461304e565b60066020526000908152604090205481565b34801561074c57600080fd5b5061042b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561078057600080fd5b5061031a611a8e565b34801561079557600080fd5b506102ea6107a436600461304e565b60036020526000908152604090205460ff1681565b3480156107c557600080fd5b506102ea6107d436600461304e565b6001600160a01b031660009081526003602052604090205460ff1690565b3480156107fe57600080fd5b5061031a61080d36600461304e565b611a97565b34801561081e57600080fd5b5061031a61082d36600461304e565b611b09565b34801561083e57600080fd5b506102a761084d36600461304e565b60076020526000908152604090205481565b60006002600054036108b85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055600154600160a01b900460ff161561090a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b8434146109595760405162461bcd60e51b815260206004820152600f60248201527f416d6f756e74206d69736d61746368000000000000000000000000000000000060448201526064016108af565b600e546001600160a01b03166109b15760405162461bcd60e51b815260206004820152601360248201527f4e61746976652077726170206e6f74207365740000000000000000000000000060448201526064016108af565b600e546000906109cd906001600160a01b031687878787611bf7565b9050600e60009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0876040518263ffffffff1660e01b81526004016000604051808303818588803b158015610a1f57600080fd5b505af1158015610a33573d6000803e3d6000fd5b5050600e54604080518681523360208201526001600160a01b0392831691810191909152606081018b905267ffffffffffffffff808b16608083015291891660a082015290871660c08201527f28d226819e371600e26624ebc4a9a3947117ee2760209f816c789d3a99bf481b935060e0019150610aae9050565b60405180910390a1600160005595945050505050565b3360009081526003602052604090205460ff16610b1c5760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b828114610b5d5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064016108af565b60005b83811015610c5b57828282818110610b7a57610b7a613158565b9050602002013560096000878785818110610b9757610b97613158565b9050602002016020810190610bac919061304e565b6001600160a01b031681526020810191909152604001600020557fceaad6533bfb481492fb3e08ef19297f46611b8fa9de5ef4cf8dc23a56ad09ce858583818110610bf957610bf9613158565b9050602002016020810190610c0e919061304e565b848484818110610c2057610c20613158565b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a180610c5381613184565b915050610b60565b5050505050565b6000600260005403610cb65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108af565b6002600055600154600160a01b900460ff1615610d085760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b6000610d178787878787611bf7565b9050610d2e6001600160a01b038816333089611df4565b604080518281523360208201526001600160a01b03898116828401526060820189905267ffffffffffffffff888116608084015290871660a0830152851660c082015290517f28d226819e371600e26624ebc4a9a3947117ee2760209f816c789d3a99bf481b9181900360e00190a160016000559695505050505050565b3360009081526003602052604090205460ff16610e045760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b828114610e455760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064016108af565b60005b83811015610c5b57828282818110610e6257610e62613158565b90506020020135600d6000878785818110610e7f57610e7f613158565b9050602002016020810190610e94919061304e565b6001600160a01b031681526020810191909152604001600020557f0e5d348f9737ccc8b4cf0eea0ccf3670af071af8bea5d64664f10e700c08de72858583818110610ee157610ee1613158565b9050602002016020810190610ef6919061304e565b848484818110610f0857610f08613158565b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a180610f3b81613184565b915050610e48565b33610f566001546001600160a01b031690565b6001600160a01b031614610fac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b610fb581611e92565b50565b3360009081526003602052604090205460ff166110105760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b600a8190556040518181527fc0a39f234199b125fb93713c4d067bdcebbf691087f87b79c0feb92b156ba8b6906020015b60405180910390a150565b3360009081526002602052604090205460ff166110ab5760405162461bcd60e51b815260206004820152601460248201527f43616c6c6572206973206e6f742070617573657200000000000000000000000060448201526064016108af565b6110b3611f4f565b565b3360009081526003602052604090205460ff1661110d5760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b82811461114e5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064016108af565b60005b83811015610c5b5782828281811061116b5761116b613158565b905060200201356006600087878581811061118857611188613158565b905060200201602081019061119d919061304e565b6001600160a01b031681526020810191909152604001600020557f608e49c22994f20b5d3496dca088b88dfd81b4a3e8cc3809ea1e10a320107e898585838181106111ea576111ea613158565b90506020020160208101906111ff919061304e565b84848481811061121157611211613158565b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a18061124481613184565b915050611151565b3360009081526003602052604090205460ff166112a45760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b60048190556040518181527f2664fec2ff76486ac58ed087310855b648b15b9d19f3de8529e95f7c46b7d6b390602001611041565b3360009081526003602052604090205460ff166113315760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b8281146113725760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064016108af565b60005b83811015610c5b5782828281811061138f5761138f613158565b90506020020135600c60008787858181106113ac576113ac613158565b90506020020160208101906113c1919061304e565b6001600160a01b031681526020810191909152604001600020557f0f48d517989455cd80ed52427e80553e66f9b69fd5cee8e26bd1a1f9c364fba685858381811061140e5761140e613158565b9050602002016020810190611423919061304e565b84848481811061143557611435613158565b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a18061146881613184565b915050611375565b336114836001546001600160a01b031690565b6001600160a01b0316146114d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b610fb581611ff5565b6110b333611ff5565b336114fe6001546001600160a01b031690565b6001600160a01b0316146115545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b610fb5816120ae565b3360009081526002602052604090205460ff166115bc5760405162461bcd60e51b815260206004820152601460248201527f43616c6c6572206973206e6f742070617573657200000000000000000000000060448201526064016108af565b6110b361216b565b600154600160a01b900460ff16156116115760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b600061161c826121f3565b90506116358160000151826020015183604001516123b8565b5050565b3361164c6001546001600160a01b031690565b6001600160a01b0316146116a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600154600090600160a01b900460ff16156117145760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b6000463060405160200161176a92919091825260601b6bffffffffffffffffffffffff191660208201527f57697468647261770000000000000000000000000000000000000000000000006034820152603c0190565b6040516020818303038152906040528051906020012090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663682dbc22828c8c6040516020016117c69392919061319d565b6040516020818303038152906040528a8a8a8a8a8a6040518863ffffffff1660e01b81526004016117fd97969594939291906132c2565b60006040518083038186803b15801561181557600080fd5b505afa158015611829573d6000803e3d6000fd5b50505050600061186e8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124ed92505050565b6020818101518251604080850151606080870151608088015160a089015185516bffffffffffffffffffffffff1998851b8916818b015296841b88166034880152604887019490945290821b8616606886015277ffffffffffffffffffffffffffffffffffffffffffffffff1960c09190911b16607c850152608484019190915230901b90921660a48201528151808203609801815260b890910182528051908301206000818152600b9093529120549192509060ff16156119625760405162461bcd60e51b815260206004820152600d60248201526c7265636f72642065786973747360981b60448201526064016108af565b6000818152600b602052604090819020805460ff1916600117905582519083015161198d9190612649565b81516001600160a01b031660009081526009602052604090205480158015906119b95750808360400151115b156119db576119d682846020015185600001518660400151612767565b6119f2565b6119f28360200151846000015185604001516123b8565b602080840151845160408087015160808089015160a0808b01516060808d015187518d81526001600160a01b039a8b169b81019b909b52978916968a01969096529488019390935267ffffffffffffffff16908601528401521660c08201527f296a629c5265cb4e5319803d016902eb70a9079b89655fe2b7737821ed88beeb9060e00160405180910390a1509b9a5050505050505050505050565b6110b33361287a565b33611aaa6001546001600160a01b031690565b6001600160a01b031614611b005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b610fb58161287a565b33611b1c6001546001600160a01b031690565b6001600160a01b031614611b725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b6001600160a01b038116611bee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108af565b610fb581612933565b6001600160a01b0385166000908152600c60205260408120548511611c5e5760405162461bcd60e51b815260206004820152601060248201527f616d6f756e7420746f6f20736d616c6c0000000000000000000000000000000060448201526064016108af565b6001600160a01b0386166000908152600d60205260409020541580611c9b57506001600160a01b0386166000908152600d60205260409020548511155b611ce75760405162461bcd60e51b815260206004820152601060248201527f616d6f756e7420746f6f206c617267650000000000000000000000000000000060448201526064016108af565b6040516bffffffffffffffffffffffff1933606090811b8216602084015288811b821660348401526048830188905277ffffffffffffffffffffffffffffffffffffffffffffffff1960c088811b8216606886015287831b8416607086015286811b8216608486015246901b16608c84015230901b16609482015260009060a80160408051601f1981840301815291815281516020928301206000818152600b90935291205490915060ff1615611dd05760405162461bcd60e51b815260206004820152600d60248201526c7265636f72642065786973747360981b60448201526064016108af565b6000818152600b60205260409020805460ff19166001179055905095945050505050565b6040516001600160a01b0380851660248301528316604482015260648101829052611e8c9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152612985565b50505050565b6001600160a01b03811660009081526003602052604090205460ff1615611efb5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920676f7665726e6f72000000000060448201526064016108af565b6001600160a01b038116600081815260036020908152604091829020805460ff1916600117905590519182527fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b59101611041565b600154600160a01b900460ff16611fa85760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016108af565b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b03811660009081526002602052604090205460ff1661205d5760405162461bcd60e51b815260206004820152601560248201527f4163636f756e74206973206e6f7420706175736572000000000000000000000060448201526064016108af565b6001600160a01b038116600081815260026020908152604091829020805460ff1916905590519182527fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e9101611041565b6001600160a01b03811660009081526002602052604090205460ff16156121175760405162461bcd60e51b815260206004820152601960248201527f4163636f756e7420697320616c7265616479207061757365720000000000000060448201526064016108af565b6001600160a01b038116600081815260026020908152604091829020805460ff1916600117905590519182527f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f89101611041565b600154600160a01b900460ff16156121b85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611fd83390565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260086020908152604091829020825160808101845281546001600160a01b03908116825260018301541692810192909252600281015492820192909252600390910154606082018190526122b25760405162461bcd60e51b815260206004820152601a60248201527f64656c61796564207472616e73666572206e6f7420657869737400000000000060448201526064016108af565b600a5481606001516122c4919061339e565b42116123125760405162461bcd60e51b815260206004820152601d60248201527f64656c61796564207472616e73666572207374696c6c206c6f636b656400000060448201526064016108af565b600083815260086020908152604080832080546001600160a01b03199081168255600182018054909116905560028101849055600301929092558251908301518383015192517f3b40e5089937425d14cdd96947e5661868357e224af59bd8b24a4b8a330d4426936123aa93889390929091909384526001600160a01b03928316602085015291166040830152606082015260800190565b60405180910390a192915050565b600e546001600160a01b03908116908316036124d457600e54604051632e1a7d4d60e01b8152600481018390526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b15801561241457600080fd5b505af1158015612428573d6000803e3d6000fd5b505050506000836001600160a01b03168261c35090604051600060405180830381858888f193505050503d806000811461247e576040519150601f19603f3d011682016040523d82523d6000602084013e612483565b606091505b5050905080611e8c5760405162461bcd60e51b815260206004820152601b60248201527f6661696c656420746f2073656e64206e617469766520746f6b656e000000000060448201526064016108af565b6124e86001600160a01b0383168483612a6a565b505050565b6040805160c08101825260008082526020808301829052828401829052606083018290526080830182905260a0830182905283518085019094528184528301849052909190805b602083015151835110156126415761254b83612a9a565b9092509050816001036125795761256961256484612ad4565b612b91565b6001600160a01b03168452612534565b816002036125a05761258d61256484612ad4565b6001600160a01b03166020850152612534565b816003036125c3576125b96125b484612ad4565b612ba2565b6040850152612534565b816004036125ea576125d761256484612ad4565b6001600160a01b03166060850152612534565b8160050361260f576125fb83612bd9565b67ffffffffffffffff166080850152612534565b816006036126325761262861262384612ad4565b612c54565b60a0850152612534565b61263c8382612c6c565b612534565b505050919050565b600454600003612657575050565b6001600160a01b0382166000908152600660205260408120549081900361267d57505050565b6001600160a01b038316600090815260056020526040812054600454909142916126a781846133b1565b6126b191906133d3565b6001600160a01b0387166000908152600760205260409020549091508111156126dc578492506126e9565b6126e6858461339e565b92505b838311156127395760405162461bcd60e51b815260206004820152601260248201527f766f6c756d65206578636565647320636170000000000000000000000000000060448201526064016108af565b506001600160a01b039094166000908152600560209081526040808320939093556007905220929092555050565b600084815260086020526040902060030154156127c65760405162461bcd60e51b815260206004820152601f60248201527f64656c61796564207472616e7366657220616c7265616479206578697374730060448201526064016108af565b604080516080810182526001600160a01b0380861682528481166020808401918252838501868152426060860190815260008b8152600890935291869020945185549085166001600160a01b031991821617865592516001860180549190951693169290921790925551600283015551600390910155517fcbcfffe5102114216a85d3aceb14ad4b81a3935b1b5c468fadf3889eb9c5dce69061286c9086815260200190565b60405180910390a150505050565b6001600160a01b03811660009081526003602052604090205460ff166128e25760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f7420676f7665726e6f7200000000000000000060448201526064016108af565b6001600160a01b038116600081815260036020908152604091829020805460ff1916905590519182527f1ebe834e73d60a5fec822c1e1727d34bc79f2ad977ed504581cc1822fe20fb5b9101611041565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006129da826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612cdc9092919063ffffffff16565b8051909150156124e857808060200190518101906129f891906133ea565b6124e85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016108af565b6040516001600160a01b0383166024820152604481018290526124e890849063a9059cbb60e01b90606401611e28565b6000806000612aa884612bd9565b9050612ab56008826133b1565b9250806007166005811115612acc57612acc61340c565b915050915091565b60606000612ae183612bd9565b90506000818460000151612af5919061339e565b9050836020015151811115612b0957600080fd5b8167ffffffffffffffff811115612b2257612b22613422565b6040519080825280601f01601f191660200182016040528015612b4c576020820181803683370190505b50602080860151865192955091818601919083010160005b85811015612b86578181015183820152612b7f60208261339e565b9050612b64565b505050935250919050565b6000612b9c82612cf5565b92915050565b6000602082511115612bb357600080fd5b6020820151905081516020612bc89190613438565b612bd39060086133d3565b1c919050565b602080820151825181019091015160009182805b600a81101561028f5783811a9150612c068160076133d3565b82607f16901b8517945081608016600003612c4257612c2681600161339e565b86518790612c3590839061339e565b9052509395945050505050565b80612c4c81613184565b915050612bed565b60008151602014612c6457600080fd5b506020015190565b6000816005811115612c8057612c8061340c565b03612c8e576124e882612bd9565b6002816005811115612ca257612ca261340c565b0361028f576000612cb283612bd9565b90508083600001818151612cc6919061339e565b905250602083015151835111156124e857600080fd5b6060612ceb8484600085612d1d565b90505b9392505050565b60008151601414612d0557600080fd5b50602001516c01000000000000000000000000900490565b606082471015612d955760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016108af565b6001600160a01b0385163b612dec5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108af565b600080866001600160a01b03168587604051612e08919061344b565b60006040518083038185875af1925050503d8060008114612e45576040519150601f19603f3d011682016040523d82523d6000602084013e612e4a565b606091505b5091509150612e5a828286612e65565b979650505050505050565b60608315612e74575081612cee565b825115612e845782518084602001fd5b8160405162461bcd60e51b81526004016108af9190613467565b803567ffffffffffffffff81168114612eb657600080fd5b919050565b80356001600160a01b0381168114612eb657600080fd5b60008060008060808587031215612ee857600080fd5b84359350612ef860208601612e9e565b9250612f0660408601612ebb565b9150612f1460608601612e9e565b905092959194509250565b600060208284031215612f3157600080fd5b5035919050565b60008083601f840112612f4a57600080fd5b50813567ffffffffffffffff811115612f6257600080fd5b6020830191508360208260051b8501011115612f7d57600080fd5b9250929050565b60008060008060408587031215612f9a57600080fd5b843567ffffffffffffffff80821115612fb257600080fd5b612fbe88838901612f38565b90965094506020870135915080821115612fd757600080fd5b50612fe487828801612f38565b95989497509550505050565b600080600080600060a0868803121561300857600080fd5b61301186612ebb565b94506020860135935061302660408701612e9e565b925061303460608701612ebb565b915061304260808701612e9e565b90509295509295909350565b60006020828403121561306057600080fd5b612cee82612ebb565b6000806000806000806000806080898b03121561308557600080fd5b883567ffffffffffffffff8082111561309d57600080fd5b818b0191508b601f8301126130b157600080fd5b8135818111156130c057600080fd5b8c60208285010111156130d257600080fd5b60209283019a509850908a013590808211156130ed57600080fd5b6130f98c838d01612f38565b909850965060408b013591508082111561311257600080fd5b61311e8c838d01612f38565b909650945060608b013591508082111561313757600080fd5b506131448b828c01612f38565b999c989b5096995094979396929594505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016131965761319661316e565b5060010190565b838152818360208301376000910160200190815292915050565b60005b838110156131d25781810151838201526020016131ba565b50506000910152565b600081518084526131f38160208601602086016131b7565b601f01601f19169290920160200192915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8183526000602080850194508260005b8581101561326c576001600160a01b0361325983612ebb565b1687529582019590820190600101613240565b509495945050505050565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156132a957600080fd5b8260051b80836020870137939093016020019392505050565b6080815260006132d5608083018a6131db565b602083820381850152818983528183019050818a60051b8401018b60005b8c81101561336357858303601f190184528135368f9003601e1901811261331957600080fd5b8e01858101903567ffffffffffffffff81111561333557600080fd5b80360382131561334457600080fd5b61334f858284613207565b9587019594505050908401906001016132f3565b50508581036040870152613378818a8c613230565b93505050508281036060840152613390818587613277565b9a9950505050505050505050565b80820180821115612b9c57612b9c61316e565b6000826133ce57634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417612b9c57612b9c61316e565b6000602082840312156133fc57600080fd5b81518015158114612cee57600080fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b81810381811115612b9c57612b9c61316e565b6000825161345d8184602087016131b7565b9190910192915050565b602081526000612cee60208301846131db56fea2646970667358221220f56ff88c90b2d7e29607379639b54430d34c76d1beaeed1a6e56b271bb9d6b4264736f6c63430008110033000000000000000000000000b3833ecd19d4ff964fa7bc3f8ac070ad5e360e56
Deployed Bytecode
0x6080604052600436106102885760003560e01c80636b2c0f5511610153578063adc0d57f116100cb578063e3eece261161007f578063eecdac8811610064578063eecdac88146107f2578063f2fde38b14610812578063f83213831461083257600080fd5b8063e3eece2614610789578063e43581b8146107b957600080fd5b8063b5f2bc47116100b0578063b5f2bc4714610713578063ccf2683b14610740578063e026049c1461077457600080fd5b8063adc0d57f14610683578063b1c94d94146106fd57600080fd5b80638456cb59116101225780639e25fc5c116101075780639e25fc5c146106235780639ff9001a14610643578063a21a92801461066357600080fd5b80638456cb59146105f05780638da5cb5b1461060557600080fd5b80636b2c0f551461056b5780636ef8d66d1461058b57806380f51c12146105a057806382dc1ec4146105d057600080fd5b8063402d267d1161020157806354eea796116101b55780635c975abb1161019a5780635c975abb146104ff5780635ec2fa261461051e57806360216b001461053e57600080fd5b806354eea796146104c957806357d775f8146104e957600080fd5b806346fbf68e116101e657806346fbf68e1461044357806347b16c6c1461047c57806352532faa1461049c57600080fd5b8063402d267d146103de578063457bfa2f1461040b57600080fd5b8063303b6442116102585780633c4a25d01161023d5780633c4a25d0146103895780633d572107146103a95780633f4ba83a146103c957600080fd5b8063303b64421461033c5780633c29f8391461035c57600080fd5b8062a95fd71461029457806301e64725146102ba57806317bdbae5146102fa578063234636241461031c57600080fd5b3661028f57005b600080fd5b6102a76102a2366004612ed2565b61085f565b6040519081526020015b60405180910390f35b3480156102c657600080fd5b506102ea6102d5366004612f1f565b600b6020526000908152604090205460ff1681565b60405190151581526020016102b1565b34801561030657600080fd5b5061031a610315366004612f84565b610ac4565b005b34801561032857600080fd5b506102a7610337366004612ff0565b610c62565b34801561034857600080fd5b5061031a610357366004612f84565b610dac565b34801561036857600080fd5b506102a761037736600461304e565b600c6020526000908152604090205481565b34801561039557600080fd5b5061031a6103a436600461304e565b610f43565b3480156103b557600080fd5b5061031a6103c4366004612f1f565b610fb8565b3480156103d557600080fd5b5061031a61104c565b3480156103ea57600080fd5b506102a76103f936600461304e565b600d6020526000908152604090205481565b34801561041757600080fd5b50600e5461042b906001600160a01b031681565b6040516001600160a01b0390911681526020016102b1565b34801561044f57600080fd5b506102ea61045e36600461304e565b6001600160a01b031660009081526002602052604090205460ff1690565b34801561048857600080fd5b5061031a610497366004612f84565b6110b5565b3480156104a857600080fd5b506102a76104b736600461304e565b60096020526000908152604090205481565b3480156104d557600080fd5b5061031a6104e4366004612f1f565b61124c565b3480156104f557600080fd5b506102a760045481565b34801561050b57600080fd5b50600154600160a01b900460ff166102ea565b34801561052a57600080fd5b5061031a610539366004612f84565b6112d9565b34801561054a57600080fd5b506102a761055936600461304e565b60056020526000908152604090205481565b34801561057757600080fd5b5061031a61058636600461304e565b611470565b34801561059757600080fd5b5061031a6114e2565b3480156105ac57600080fd5b506102ea6105bb36600461304e565b60026020526000908152604090205460ff1681565b3480156105dc57600080fd5b5061031a6105eb36600461304e565b6114eb565b3480156105fc57600080fd5b5061031a61155d565b34801561061157600080fd5b506001546001600160a01b031661042b565b34801561062f57600080fd5b5061031a61063e366004612f1f565b6115c4565b34801561064f57600080fd5b5061031a61065e36600461304e565b611639565b34801561066f57600080fd5b506102a761067e366004613069565b6116c4565b34801561068f57600080fd5b506106d261069e366004612f1f565b60086020526000908152604090208054600182015460028301546003909301546001600160a01b0392831693919092169184565b604080516001600160a01b0395861681529490931660208501529183015260608201526080016102b1565b34801561070957600080fd5b506102a7600a5481565b34801561071f57600080fd5b506102a761072e36600461304e565b60066020526000908152604090205481565b34801561074c57600080fd5b5061042b7f000000000000000000000000b3833ecd19d4ff964fa7bc3f8ac070ad5e360e5681565b34801561078057600080fd5b5061031a611a8e565b34801561079557600080fd5b506102ea6107a436600461304e565b60036020526000908152604090205460ff1681565b3480156107c557600080fd5b506102ea6107d436600461304e565b6001600160a01b031660009081526003602052604090205460ff1690565b3480156107fe57600080fd5b5061031a61080d36600461304e565b611a97565b34801561081e57600080fd5b5061031a61082d36600461304e565b611b09565b34801561083e57600080fd5b506102a761084d36600461304e565b60076020526000908152604090205481565b60006002600054036108b85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055600154600160a01b900460ff161561090a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b8434146109595760405162461bcd60e51b815260206004820152600f60248201527f416d6f756e74206d69736d61746368000000000000000000000000000000000060448201526064016108af565b600e546001600160a01b03166109b15760405162461bcd60e51b815260206004820152601360248201527f4e61746976652077726170206e6f74207365740000000000000000000000000060448201526064016108af565b600e546000906109cd906001600160a01b031687878787611bf7565b9050600e60009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0876040518263ffffffff1660e01b81526004016000604051808303818588803b158015610a1f57600080fd5b505af1158015610a33573d6000803e3d6000fd5b5050600e54604080518681523360208201526001600160a01b0392831691810191909152606081018b905267ffffffffffffffff808b16608083015291891660a082015290871660c08201527f28d226819e371600e26624ebc4a9a3947117ee2760209f816c789d3a99bf481b935060e0019150610aae9050565b60405180910390a1600160005595945050505050565b3360009081526003602052604090205460ff16610b1c5760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b828114610b5d5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064016108af565b60005b83811015610c5b57828282818110610b7a57610b7a613158565b9050602002013560096000878785818110610b9757610b97613158565b9050602002016020810190610bac919061304e565b6001600160a01b031681526020810191909152604001600020557fceaad6533bfb481492fb3e08ef19297f46611b8fa9de5ef4cf8dc23a56ad09ce858583818110610bf957610bf9613158565b9050602002016020810190610c0e919061304e565b848484818110610c2057610c20613158565b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a180610c5381613184565b915050610b60565b5050505050565b6000600260005403610cb65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108af565b6002600055600154600160a01b900460ff1615610d085760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b6000610d178787878787611bf7565b9050610d2e6001600160a01b038816333089611df4565b604080518281523360208201526001600160a01b03898116828401526060820189905267ffffffffffffffff888116608084015290871660a0830152851660c082015290517f28d226819e371600e26624ebc4a9a3947117ee2760209f816c789d3a99bf481b9181900360e00190a160016000559695505050505050565b3360009081526003602052604090205460ff16610e045760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b828114610e455760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064016108af565b60005b83811015610c5b57828282818110610e6257610e62613158565b90506020020135600d6000878785818110610e7f57610e7f613158565b9050602002016020810190610e94919061304e565b6001600160a01b031681526020810191909152604001600020557f0e5d348f9737ccc8b4cf0eea0ccf3670af071af8bea5d64664f10e700c08de72858583818110610ee157610ee1613158565b9050602002016020810190610ef6919061304e565b848484818110610f0857610f08613158565b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a180610f3b81613184565b915050610e48565b33610f566001546001600160a01b031690565b6001600160a01b031614610fac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b610fb581611e92565b50565b3360009081526003602052604090205460ff166110105760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b600a8190556040518181527fc0a39f234199b125fb93713c4d067bdcebbf691087f87b79c0feb92b156ba8b6906020015b60405180910390a150565b3360009081526002602052604090205460ff166110ab5760405162461bcd60e51b815260206004820152601460248201527f43616c6c6572206973206e6f742070617573657200000000000000000000000060448201526064016108af565b6110b3611f4f565b565b3360009081526003602052604090205460ff1661110d5760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b82811461114e5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064016108af565b60005b83811015610c5b5782828281811061116b5761116b613158565b905060200201356006600087878581811061118857611188613158565b905060200201602081019061119d919061304e565b6001600160a01b031681526020810191909152604001600020557f608e49c22994f20b5d3496dca088b88dfd81b4a3e8cc3809ea1e10a320107e898585838181106111ea576111ea613158565b90506020020160208101906111ff919061304e565b84848481811061121157611211613158565b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a18061124481613184565b915050611151565b3360009081526003602052604090205460ff166112a45760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b60048190556040518181527f2664fec2ff76486ac58ed087310855b648b15b9d19f3de8529e95f7c46b7d6b390602001611041565b3360009081526003602052604090205460ff166113315760405162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba1033b7bb32b93737b960511b60448201526064016108af565b8281146113725760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064016108af565b60005b83811015610c5b5782828281811061138f5761138f613158565b90506020020135600c60008787858181106113ac576113ac613158565b90506020020160208101906113c1919061304e565b6001600160a01b031681526020810191909152604001600020557f0f48d517989455cd80ed52427e80553e66f9b69fd5cee8e26bd1a1f9c364fba685858381811061140e5761140e613158565b9050602002016020810190611423919061304e565b84848481811061143557611435613158565b604080516001600160a01b0390951685526020918202939093013590840152500160405180910390a18061146881613184565b915050611375565b336114836001546001600160a01b031690565b6001600160a01b0316146114d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b610fb581611ff5565b6110b333611ff5565b336114fe6001546001600160a01b031690565b6001600160a01b0316146115545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b610fb5816120ae565b3360009081526002602052604090205460ff166115bc5760405162461bcd60e51b815260206004820152601460248201527f43616c6c6572206973206e6f742070617573657200000000000000000000000060448201526064016108af565b6110b361216b565b600154600160a01b900460ff16156116115760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b600061161c826121f3565b90506116358160000151826020015183604001516123b8565b5050565b3361164c6001546001600160a01b031690565b6001600160a01b0316146116a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600154600090600160a01b900460ff16156117145760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b6000463060405160200161176a92919091825260601b6bffffffffffffffffffffffff191660208201527f57697468647261770000000000000000000000000000000000000000000000006034820152603c0190565b6040516020818303038152906040528051906020012090507f000000000000000000000000b3833ecd19d4ff964fa7bc3f8ac070ad5e360e566001600160a01b031663682dbc22828c8c6040516020016117c69392919061319d565b6040516020818303038152906040528a8a8a8a8a8a6040518863ffffffff1660e01b81526004016117fd97969594939291906132c2565b60006040518083038186803b15801561181557600080fd5b505afa158015611829573d6000803e3d6000fd5b50505050600061186e8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124ed92505050565b6020818101518251604080850151606080870151608088015160a089015185516bffffffffffffffffffffffff1998851b8916818b015296841b88166034880152604887019490945290821b8616606886015277ffffffffffffffffffffffffffffffffffffffffffffffff1960c09190911b16607c850152608484019190915230901b90921660a48201528151808203609801815260b890910182528051908301206000818152600b9093529120549192509060ff16156119625760405162461bcd60e51b815260206004820152600d60248201526c7265636f72642065786973747360981b60448201526064016108af565b6000818152600b602052604090819020805460ff1916600117905582519083015161198d9190612649565b81516001600160a01b031660009081526009602052604090205480158015906119b95750808360400151115b156119db576119d682846020015185600001518660400151612767565b6119f2565b6119f28360200151846000015185604001516123b8565b602080840151845160408087015160808089015160a0808b01516060808d015187518d81526001600160a01b039a8b169b81019b909b52978916968a01969096529488019390935267ffffffffffffffff16908601528401521660c08201527f296a629c5265cb4e5319803d016902eb70a9079b89655fe2b7737821ed88beeb9060e00160405180910390a1509b9a5050505050505050505050565b6110b33361287a565b33611aaa6001546001600160a01b031690565b6001600160a01b031614611b005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b610fb58161287a565b33611b1c6001546001600160a01b031690565b6001600160a01b031614611b725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108af565b6001600160a01b038116611bee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108af565b610fb581612933565b6001600160a01b0385166000908152600c60205260408120548511611c5e5760405162461bcd60e51b815260206004820152601060248201527f616d6f756e7420746f6f20736d616c6c0000000000000000000000000000000060448201526064016108af565b6001600160a01b0386166000908152600d60205260409020541580611c9b57506001600160a01b0386166000908152600d60205260409020548511155b611ce75760405162461bcd60e51b815260206004820152601060248201527f616d6f756e7420746f6f206c617267650000000000000000000000000000000060448201526064016108af565b6040516bffffffffffffffffffffffff1933606090811b8216602084015288811b821660348401526048830188905277ffffffffffffffffffffffffffffffffffffffffffffffff1960c088811b8216606886015287831b8416607086015286811b8216608486015246901b16608c84015230901b16609482015260009060a80160408051601f1981840301815291815281516020928301206000818152600b90935291205490915060ff1615611dd05760405162461bcd60e51b815260206004820152600d60248201526c7265636f72642065786973747360981b60448201526064016108af565b6000818152600b60205260409020805460ff19166001179055905095945050505050565b6040516001600160a01b0380851660248301528316604482015260648101829052611e8c9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152612985565b50505050565b6001600160a01b03811660009081526003602052604090205460ff1615611efb5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920676f7665726e6f72000000000060448201526064016108af565b6001600160a01b038116600081815260036020908152604091829020805460ff1916600117905590519182527fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b59101611041565b600154600160a01b900460ff16611fa85760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016108af565b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b03811660009081526002602052604090205460ff1661205d5760405162461bcd60e51b815260206004820152601560248201527f4163636f756e74206973206e6f7420706175736572000000000000000000000060448201526064016108af565b6001600160a01b038116600081815260026020908152604091829020805460ff1916905590519182527fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e9101611041565b6001600160a01b03811660009081526002602052604090205460ff16156121175760405162461bcd60e51b815260206004820152601960248201527f4163636f756e7420697320616c7265616479207061757365720000000000000060448201526064016108af565b6001600160a01b038116600081815260026020908152604091829020805460ff1916600117905590519182527f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f89101611041565b600154600160a01b900460ff16156121b85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108af565b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611fd83390565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260086020908152604091829020825160808101845281546001600160a01b03908116825260018301541692810192909252600281015492820192909252600390910154606082018190526122b25760405162461bcd60e51b815260206004820152601a60248201527f64656c61796564207472616e73666572206e6f7420657869737400000000000060448201526064016108af565b600a5481606001516122c4919061339e565b42116123125760405162461bcd60e51b815260206004820152601d60248201527f64656c61796564207472616e73666572207374696c6c206c6f636b656400000060448201526064016108af565b600083815260086020908152604080832080546001600160a01b03199081168255600182018054909116905560028101849055600301929092558251908301518383015192517f3b40e5089937425d14cdd96947e5661868357e224af59bd8b24a4b8a330d4426936123aa93889390929091909384526001600160a01b03928316602085015291166040830152606082015260800190565b60405180910390a192915050565b600e546001600160a01b03908116908316036124d457600e54604051632e1a7d4d60e01b8152600481018390526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b15801561241457600080fd5b505af1158015612428573d6000803e3d6000fd5b505050506000836001600160a01b03168261c35090604051600060405180830381858888f193505050503d806000811461247e576040519150601f19603f3d011682016040523d82523d6000602084013e612483565b606091505b5050905080611e8c5760405162461bcd60e51b815260206004820152601b60248201527f6661696c656420746f2073656e64206e617469766520746f6b656e000000000060448201526064016108af565b6124e86001600160a01b0383168483612a6a565b505050565b6040805160c08101825260008082526020808301829052828401829052606083018290526080830182905260a0830182905283518085019094528184528301849052909190805b602083015151835110156126415761254b83612a9a565b9092509050816001036125795761256961256484612ad4565b612b91565b6001600160a01b03168452612534565b816002036125a05761258d61256484612ad4565b6001600160a01b03166020850152612534565b816003036125c3576125b96125b484612ad4565b612ba2565b6040850152612534565b816004036125ea576125d761256484612ad4565b6001600160a01b03166060850152612534565b8160050361260f576125fb83612bd9565b67ffffffffffffffff166080850152612534565b816006036126325761262861262384612ad4565b612c54565b60a0850152612534565b61263c8382612c6c565b612534565b505050919050565b600454600003612657575050565b6001600160a01b0382166000908152600660205260408120549081900361267d57505050565b6001600160a01b038316600090815260056020526040812054600454909142916126a781846133b1565b6126b191906133d3565b6001600160a01b0387166000908152600760205260409020549091508111156126dc578492506126e9565b6126e6858461339e565b92505b838311156127395760405162461bcd60e51b815260206004820152601260248201527f766f6c756d65206578636565647320636170000000000000000000000000000060448201526064016108af565b506001600160a01b039094166000908152600560209081526040808320939093556007905220929092555050565b600084815260086020526040902060030154156127c65760405162461bcd60e51b815260206004820152601f60248201527f64656c61796564207472616e7366657220616c7265616479206578697374730060448201526064016108af565b604080516080810182526001600160a01b0380861682528481166020808401918252838501868152426060860190815260008b8152600890935291869020945185549085166001600160a01b031991821617865592516001860180549190951693169290921790925551600283015551600390910155517fcbcfffe5102114216a85d3aceb14ad4b81a3935b1b5c468fadf3889eb9c5dce69061286c9086815260200190565b60405180910390a150505050565b6001600160a01b03811660009081526003602052604090205460ff166128e25760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f7420676f7665726e6f7200000000000000000060448201526064016108af565b6001600160a01b038116600081815260036020908152604091829020805460ff1916905590519182527f1ebe834e73d60a5fec822c1e1727d34bc79f2ad977ed504581cc1822fe20fb5b9101611041565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006129da826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612cdc9092919063ffffffff16565b8051909150156124e857808060200190518101906129f891906133ea565b6124e85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016108af565b6040516001600160a01b0383166024820152604481018290526124e890849063a9059cbb60e01b90606401611e28565b6000806000612aa884612bd9565b9050612ab56008826133b1565b9250806007166005811115612acc57612acc61340c565b915050915091565b60606000612ae183612bd9565b90506000818460000151612af5919061339e565b9050836020015151811115612b0957600080fd5b8167ffffffffffffffff811115612b2257612b22613422565b6040519080825280601f01601f191660200182016040528015612b4c576020820181803683370190505b50602080860151865192955091818601919083010160005b85811015612b86578181015183820152612b7f60208261339e565b9050612b64565b505050935250919050565b6000612b9c82612cf5565b92915050565b6000602082511115612bb357600080fd5b6020820151905081516020612bc89190613438565b612bd39060086133d3565b1c919050565b602080820151825181019091015160009182805b600a81101561028f5783811a9150612c068160076133d3565b82607f16901b8517945081608016600003612c4257612c2681600161339e565b86518790612c3590839061339e565b9052509395945050505050565b80612c4c81613184565b915050612bed565b60008151602014612c6457600080fd5b506020015190565b6000816005811115612c8057612c8061340c565b03612c8e576124e882612bd9565b6002816005811115612ca257612ca261340c565b0361028f576000612cb283612bd9565b90508083600001818151612cc6919061339e565b905250602083015151835111156124e857600080fd5b6060612ceb8484600085612d1d565b90505b9392505050565b60008151601414612d0557600080fd5b50602001516c01000000000000000000000000900490565b606082471015612d955760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016108af565b6001600160a01b0385163b612dec5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108af565b600080866001600160a01b03168587604051612e08919061344b565b60006040518083038185875af1925050503d8060008114612e45576040519150601f19603f3d011682016040523d82523d6000602084013e612e4a565b606091505b5091509150612e5a828286612e65565b979650505050505050565b60608315612e74575081612cee565b825115612e845782518084602001fd5b8160405162461bcd60e51b81526004016108af9190613467565b803567ffffffffffffffff81168114612eb657600080fd5b919050565b80356001600160a01b0381168114612eb657600080fd5b60008060008060808587031215612ee857600080fd5b84359350612ef860208601612e9e565b9250612f0660408601612ebb565b9150612f1460608601612e9e565b905092959194509250565b600060208284031215612f3157600080fd5b5035919050565b60008083601f840112612f4a57600080fd5b50813567ffffffffffffffff811115612f6257600080fd5b6020830191508360208260051b8501011115612f7d57600080fd5b9250929050565b60008060008060408587031215612f9a57600080fd5b843567ffffffffffffffff80821115612fb257600080fd5b612fbe88838901612f38565b90965094506020870135915080821115612fd757600080fd5b50612fe487828801612f38565b95989497509550505050565b600080600080600060a0868803121561300857600080fd5b61301186612ebb565b94506020860135935061302660408701612e9e565b925061303460608701612ebb565b915061304260808701612e9e565b90509295509295909350565b60006020828403121561306057600080fd5b612cee82612ebb565b6000806000806000806000806080898b03121561308557600080fd5b883567ffffffffffffffff8082111561309d57600080fd5b818b0191508b601f8301126130b157600080fd5b8135818111156130c057600080fd5b8c60208285010111156130d257600080fd5b60209283019a509850908a013590808211156130ed57600080fd5b6130f98c838d01612f38565b909850965060408b013591508082111561311257600080fd5b61311e8c838d01612f38565b909650945060608b013591508082111561313757600080fd5b506131448b828c01612f38565b999c989b5096995094979396929594505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016131965761319661316e565b5060010190565b838152818360208301376000910160200190815292915050565b60005b838110156131d25781810151838201526020016131ba565b50506000910152565b600081518084526131f38160208601602086016131b7565b601f01601f19169290920160200192915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8183526000602080850194508260005b8581101561326c576001600160a01b0361325983612ebb565b1687529582019590820190600101613240565b509495945050505050565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156132a957600080fd5b8260051b80836020870137939093016020019392505050565b6080815260006132d5608083018a6131db565b602083820381850152818983528183019050818a60051b8401018b60005b8c81101561336357858303601f190184528135368f9003601e1901811261331957600080fd5b8e01858101903567ffffffffffffffff81111561333557600080fd5b80360382131561334457600080fd5b61334f858284613207565b9587019594505050908401906001016132f3565b50508581036040870152613378818a8c613230565b93505050508281036060840152613390818587613277565b9a9950505050505050505050565b80820180821115612b9c57612b9c61316e565b6000826133ce57634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417612b9c57612b9c61316e565b6000602082840312156133fc57600080fd5b81518015158114612cee57600080fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b81810381811115612b9c57612b9c61316e565b6000825161345d8184602087016131b7565b9190910192915050565b602081526000612cee60208301846131db56fea2646970667358221220f56ff88c90b2d7e29607379639b54430d34c76d1beaeed1a6e56b271bb9d6b4264736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b3833ecd19d4ff964fa7bc3f8ac070ad5e360e56
-----Decoded View---------------
Arg [0] : _sigsVerifier (address): 0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b3833ecd19d4ff964fa7bc3f8ac070ad5e360e56
Deployed Bytecode Sourcemap
633:8157:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3732:595;;;;;;:::i;:::-;;:::i;:::-;;;941:25:16;;;929:2;914:18;3732:595:4;;;;;;;;811:39;;;;;;;;;;-1:-1:-1;811:39:4;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1327:14:16;;1320:22;1302:41;;1290:2;1275:18;811:39:4;1162:187:16;703:382:5;;;;;;;;;;-1:-1:-1;703:382:5;;;;;:::i;:::-;;:::i;:::-;;2773:497:4;;;;;;;;;;-1:-1:-1;2773:497:4;;;;;:::i;:::-;;:::i;7818:356::-;;;;;;;;;;-1:-1:-1;7818:356:4;;;;;:::i;:::-;;:::i;857:45::-;;;;;;;;;;-1:-1:-1;857:45:4;;;;;:::i;:::-;;;;;;;;;;;;;;561:95:6;;;;;;;;;;-1:-1:-1;561:95:6;;;;;:::i;:::-;;:::i;1091:143:5:-;;;;;;;;;;-1:-1:-1;1091:143:5;;;;;:::i;:::-;;:::i;563:64:8:-;;;;;;;;;;;;;:::i;908:45:4:-;;;;;;;;;;-1:-1:-1;908:45:4;;;;;:::i;:::-;;;;;;;;;;;;;;960:25;;;;;;;;;;-1:-1:-1;960:25:4;;;;-1:-1:-1;;;;;960:25:4;;;;;;-1:-1:-1;;;;;3705:55:16;;;3687:74;;3675:2;3660:18;960:25:4;3541:226:16;633:102:8;;;;;;;;;;-1:-1:-1;633:102:8;;;;;:::i;:::-;-1:-1:-1;;;;;712:16:8;689:4;712:16;;;:7;:16;;;;;;;;;633:102;655:355:9;;;;;;;;;;-1:-1:-1;655:355:9;;;;;:::i;:::-;;:::i;345:50:5:-;;;;;;;;;;-1:-1:-1;345:50:5;;;;;:::i;:::-;;;;;;;;;;;;;;506:143:9;;;;;;;;;;-1:-1:-1;506:143:9;;;;;:::i;:::-;;:::i;143:26::-;;;;;;;;;;;;;;;;1098:84:10;;;;;;;;;;-1:-1:-1;1168:7:10;;-1:-1:-1;;;1168:7:10;;;;1098:84;;7456:356:4;;;;;;;;;;-1:-1:-1;7456:356:4;;;;;:::i;:::-;;:::i;186:47:9:-;;;;;;;;;;-1:-1:-1;186:47:9;;;;;:::i;:::-;;;;;;;;;;;;;;836:95:8;;;;;;;;;;-1:-1:-1;836:95:8;;;;;:::i;:::-;;:::i;937:75::-;;;;;;;;;;;;;:::i;200:39::-;;;;;;;;;;-1:-1:-1;200:39:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;741:89;;;;;;;;;;-1:-1:-1;741:89:8;;;;;:::i;:::-;;:::i;497:60::-;;;;;;;;;;;;;:::i;1479:85:7:-;;;;;;;;;;-1:-1:-1;1551:6:7;;-1:-1:-1;;;;;1551:6:7;1479:85;;7233:217:4;;;;;;;;;;-1:-1:-1;7233:217:4;;;;;:::i;:::-;;:::i;8180:86::-;;;;;;;;;;-1:-1:-1;8180:86:4;;;;;:::i;:::-;;:::i;5658:1569::-;;;;;;;;;;-1:-1:-1;5658:1569:4;;;;;:::i;:::-;;:::i;280:59:5:-;;;;;;;;;;-1:-1:-1;280:59:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;280:59:5;;;;;;;;;;;;;;;-1:-1:-1;;;;;5641:15:16;;;5623:34;;5693:15;;;;5688:2;5673:18;;5666:43;5725:18;;;5718:34;5783:2;5768:18;;5761:34;5549:3;5534:19;280:59:5;5331:470:16;401:26:5;;;;;;;;;;;;;;;;255:50:9;;;;;;;;;;-1:-1:-1;255:50:9;;;;;:::i;:::-;;;;;;;;;;;;;;761:43:4;;;;;;;;;;;;;;;769:79:6;;;;;;;;;;;;;:::i;136:41::-;;;;;;;;;;-1:-1:-1;136:41:6;;;;;:::i;:::-;;;;;;;;;;;;;;;;447:108;;;;;;;;;;-1:-1:-1;447:108:6;;;;;:::i;:::-;-1:-1:-1;;;;;529:19:6;506:4;529:19;;;:9;:19;;;;;;;;;447:108;662:101;;;;;;;;;;-1:-1:-1;662:101:6;;;;;:::i;:::-;;:::i;1916:189:7:-;;;;;;;;;;-1:-1:-1;1916:189:7;;;;;:::i;:::-;;:::i;327:51:9:-;;;;;;;;;;-1:-1:-1;327:51:9;;;;;:::i;:::-;;;;;;;;;;;;;;3732:595:4;3921:7;1744:1:11;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:11;;6259:2:16;2317:63:11;;;6241:21:16;6298:2;6278:18;;;6271:30;6337:33;6317:18;;;6310:61;6388:18;;2317:63:11;;;;;;;;;1744:1;2455:7;:18;1168:7:10;;-1:-1:-1;;;1168:7:10;;;;1411:9:::1;1403:38;;;::::0;-1:-1:-1;;;1403:38:10;;6619:2:16;1403:38:10::1;::::0;::::1;6601:21:16::0;6658:2;6638:18;;;6631:30;-1:-1:-1;;;6677:18:16;;;6670:46;6733:18;;1403:38:10::1;6417:340:16::0;1403:38:10::1;3961:7:4::2;3948:9;:20;3940:48;;;::::0;-1:-1:-1;;;3940:48:4;;6964:2:16;3940:48:4::2;::::0;::::2;6946:21:16::0;7003:2;6983:18;;;6976:30;7042:17;7022:18;;;7015:45;7077:18;;3940:48:4::2;6762:339:16::0;3940:48:4::2;4006:10;::::0;-1:-1:-1;;;;;4006:10:4::2;3998:56;;;::::0;-1:-1:-1;;;3998:56:4;;7308:2:16;3998:56:4::2;::::0;::::2;7290:21:16::0;7347:2;7327:18;;;7320:30;7386:21;7366:18;;;7359:49;7425:18;;3998:56:4::2;7106:343:16::0;3998:56:4::2;4089:10;::::0;4064:13:::2;::::0;4080:65:::2;::::0;-1:-1:-1;;;;;4089:10:4::2;4101:7:::0;4110:12;4124;4138:6;4080:8:::2;:65::i;:::-;4064:81;;4161:10;;;;;;;;;-1:-1:-1::0;;;;;4161:10:4::2;-1:-1:-1::0;;;;;4155:25:4::2;;4188:7;4155:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;4242:10:4::2;::::0;4213:85:::2;::::0;;7765:25:16;;;4230:10:4::2;7882:2:16::0;7867:18;;7860:43;-1:-1:-1;;;;;4242:10:4;;::::2;7919:18:16::0;;;7912:43;;;;7986:2;7971:18;;7964:34;;;8017:18;8072:15;;;8066:3;8051:19;;8044:44;8125:15;;;8119:3;8104:19;;8097:44;8178:15;;;8172:3;8157:19;;8150:44;4213:85:4::2;::::0;-1:-1:-1;7752:3:16;7737:19;;-1:-1:-1;4213:85:4::2;::::0;-1:-1:-1;7454:746:16;4213:85:4::2;;;;;;;;1701:1:11::0;2628:7;:22;4315:5:4;3732:595;-1:-1:-1;;;;;3732:595:4:o;703:382:5:-;324:10:6;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:6;;8407:2:16;305:57:6;;;8389:21:16;8446:2;8426:18;;;8419:30;-1:-1:-1;;;8465:18:16;;;8458:52;8527:18;;305:57:6;8205:346:16;305:57:6;831:36:5;;::::1;823:64;;;::::0;-1:-1:-1;;;823:64:5;;8758:2:16;823:64:5::1;::::0;::::1;8740:21:16::0;8797:2;8777:18;;;8770:30;-1:-1:-1;;;8816:18:16;;;8809:45;8871:18;;823:64:5::1;8556:339:16::0;823:64:5::1;902:9;897:182;917:18:::0;;::::1;897:182;;;986:11;;998:1;986:14;;;;;;;:::i;:::-;;;;;;;956:15;:27;972:7;;980:1;972:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;956:27:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;956:27:5;:44;1019:49:::1;1041:7:::0;;1049:1;1041:10;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1053:11;;1065:1;1053:14;;;;;;;:::i;:::-;1019:49;::::0;;-1:-1:-1;;;;;9224:55:16;;;9206:74;;1053:14:5::1;::::0;;::::1;::::0;;;::::1;;9296:18:16::0;;;9289:34;-1:-1:-1;9179:18:16;1019:49:5::1;;;;;;;937:3:::0;::::1;::::0;::::1;:::i;:::-;;;;897:182;;;;703:382:::0;;;;:::o;2773:497:4:-;2972:7;1744:1:11;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:11;;6259:2:16;2317:63:11;;;6241:21:16;6298:2;6278:18;;;6271:30;6337:33;6317:18;;;6310:61;6388:18;;2317:63:11;6057:355:16;2317:63:11;1744:1;2455:7;:18;1168:7:10;;-1:-1:-1;;;1168:7:10;;;;1411:9:::1;1403:38;;;::::0;-1:-1:-1;;;1403:38:10;;6619:2:16;1403:38:10::1;::::0;::::1;6601:21:16::0;6658:2;6638:18;;;6631:30;-1:-1:-1;;;6677:18:16;;;6670:46;6733:18;;1403:38:10::1;6417:340:16::0;1403:38:10::1;2991:13:4::2;3007:61;3016:6;3024:7;3033:12;3047;3061:6;3007:8;:61::i;:::-;2991:77:::0;-1:-1:-1;3078:67:4::2;-1:-1:-1::0;;;;;3078:31:4;::::2;3110:10;3130:4;3137:7:::0;3078:31:::2;:67::i;:::-;3160:81;::::0;;7765:25:16;;;3177:10:4::2;7882:2:16::0;7867:18;;7860:43;-1:-1:-1;;;;;7939:15:16;;;7919:18;;;7912:43;7986:2;7971:18;;7964:34;;;8017:18;8072:15;;;8066:3;8051:19;;8044:44;8125:15;;;8119:3;8104:19;;8097:44;8178:15;;8172:3;8157:19;;8150:44;3160:81:4;;::::2;::::0;;;;7752:3:16;3160:81:4;;::::2;1701:1:11::0;2628:7;:22;3258:5:4;2773:497;-1:-1:-1;;;;;;2773:497:4:o;7818:356::-;324:10:6;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:6;;8407:2:16;305:57:6;;;8389:21:16;8446:2;8426:18;;;8419:30;-1:-1:-1;;;8465:18:16;;;8458:52;8527:18;;305:57:6;8205:346:16;305:57:6;7938:33:4;;::::1;7930:61;;;::::0;-1:-1:-1;;;7930:61:4;;8758:2:16;7930:61:4::1;::::0;::::1;8740:21:16::0;8797:2;8777:18;;;8770:30;-1:-1:-1;;;8816:18:16;;;8809:45;8871:18;;7930:61:4::1;8556:339:16::0;7930:61:4::1;8006:9;8001:167;8021:18:::0;;::::1;8001:167;;;8085:8;;8094:1;8085:11;;;;;;;:::i;:::-;;;;;;;8060:10;:22;8071:7;;8079:1;8071:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;8060:22:4::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;8060:22:4;:36;8115:42:::1;8133:7:::0;;8141:1;8133:10;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8145:8;;8154:1;8145:11;;;;;;;:::i;:::-;8115:42;::::0;;-1:-1:-1;;;;;9224:55:16;;;9206:74;;8145:11:4::1;::::0;;::::1;::::0;;;::::1;;9296:18:16::0;;;9289:34;-1:-1:-1;9179:18:16;8115:42:4::1;;;;;;;8041:3:::0;::::1;::::0;::::1;:::i;:::-;;;;8001:167;;561:95:6::0;1702:10:7;1691:7;1551:6;;-1:-1:-1;;;;;1551:6:7;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:7;;1683:66;;;;-1:-1:-1;;;1683:66:7;;9808:2:16;1683:66:7;;;9790:21:16;;;9827:18;;;9820:30;9886:34;9866:18;;;9859:62;9938:18;;1683:66:7;9606:356:16;1683:66:7;627:22:6::1;640:8;627:12;:22::i;:::-;561:95:::0;:::o;1091:143:5:-;324:10:6;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:6;;8407:2:16;305:57:6;;;8389:21:16;8446:2;8426:18;;;8419:30;-1:-1:-1;;;8465:18:16;;;8458:52;8527:18;;305:57:6;8205:346:16;305:57:6;1164:11:5::1;:21:::0;;;1200:27:::1;::::0;941:25:16;;;1200:27:5::1;::::0;929:2:16;914:18;1200:27:5::1;;;;;;;;1091:143:::0;:::o;563:64:8:-;437:10;689:4;712:16;;;:7;:16;;;;;;;;420:53;;;;-1:-1:-1;;;420:53:8;;10169:2:16;420:53:8;;;10151:21:16;10208:2;10188:18;;;10181:30;10247:22;10227:18;;;10220:50;10287:18;;420:53:8;9967:344:16;420:53:8;610:10:::1;:8;:10::i;:::-;563:64::o:0;655:355:9:-;324:10:6;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:6;;8407:2:16;305:57:6;;;8389:21:16;8446:2;8426:18;;;8419:30;-1:-1:-1;;;8465:18:16;;;8458:52;8527:18;;305:57:6;8205:346:16;305:57:6;777:30:9;;::::1;769:58;;;::::0;-1:-1:-1;;;769:58:9;;8758:2:16;769:58:9::1;::::0;::::1;8740:21:16::0;8797:2;8777:18;;;8770:30;-1:-1:-1;;;8816:18:16;;;8809:45;8871:18;;769:58:9::1;8556:339:16::0;769:58:9::1;842:9;837:167;857:18:::0;;::::1;837:167;;;926:5;;932:1;926:8;;;;;;;:::i;:::-;;;;;;;896:15;:27;912:7;;920:1;912:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;896:27:9::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;896:27:9;:38;953:40:::1;972:7:::0;;980:1;972:10;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;984:5;;990:1;984:8;;;;;;;:::i;:::-;953:40;::::0;;-1:-1:-1;;;;;9224:55:16;;;9206:74;;984:8:9::1;::::0;;::::1;::::0;;;::::1;;9296:18:16::0;;;9289:34;-1:-1:-1;9179:18:16;953:40:9::1;;;;;;;877:3:::0;::::1;::::0;::::1;:::i;:::-;;;;837:167;;506:143:::0;324:10:6;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:6;;8407:2:16;305:57:6;;;8389:21:16;8446:2;8426:18;;;8419:30;-1:-1:-1;;;8465:18:16;;;8458:52;8527:18;;305:57:6;8205:346:16;305:57:6;579:11:9::1;:21:::0;;;615:27:::1;::::0;941:25:16;;;615:27:9::1;::::0;929:2:16;914:18;615:27:9::1;795:177:16::0;7456:356:4;324:10:6;506:4;529:19;;;:9;:19;;;;;;;;305:57;;;;-1:-1:-1;;;305:57:6;;8407:2:16;305:57:6;;;8389:21:16;8446:2;8426:18;;;8419:30;-1:-1:-1;;;8465:18:16;;;8458:52;8527:18;;305:57:6;8205:346:16;305:57:6;7576:33:4;;::::1;7568:61;;;::::0;-1:-1:-1;;;7568:61:4;;8758:2:16;7568:61:4::1;::::0;::::1;8740:21:16::0;8797:2;8777:18;;;8770:30;-1:-1:-1;;;8816:18:16;;;8809:45;8871:18;;7568:61:4::1;8556:339:16::0;7568:61:4::1;7644:9;7639:167;7659:18:::0;;::::1;7639:167;;;7723:8;;7732:1;7723:11;;;;;;;:::i;:::-;;;;;;;7698:10;:22;7709:7;;7717:1;7709:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;7698:22:4::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;7698:22:4;:36;7753:42:::1;7771:7:::0;;7779:1;7771:10;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;7783:8;;7792:1;7783:11;;;;;;;:::i;:::-;7753:42;::::0;;-1:-1:-1;;;;;9224:55:16;;;9206:74;;7783:11:4::1;::::0;;::::1;::::0;;;::::1;;9296:18:16::0;;;9289:34;-1:-1:-1;9179:18:16;7753:42:4::1;;;;;;;7679:3:::0;::::1;::::0;::::1;:::i;:::-;;;;7639:167;;836:95:8::0;1702:10:7;1691:7;1551:6;;-1:-1:-1;;;;;1551:6:7;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:7;;1683:66;;;;-1:-1:-1;;;1683:66:7;;9808:2:16;1683:66:7;;;9790:21:16;;;9827:18;;;9820:30;9886:34;9866:18;;;9859:62;9938:18;;1683:66:7;9606:356:16;1683:66:7;902:22:8::1;916:7;902:13;:22::i;937:75::-:0;980:25;994:10;980:13;:25::i;741:89::-;1702:10:7;1691:7;1551:6;;-1:-1:-1;;;;;1551:6:7;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:7;;1683:66;;;;-1:-1:-1;;;1683:66:7;;9808:2:16;1683:66:7;;;9790:21:16;;;9827:18;;;9820:30;9886:34;9866:18;;;9859:62;9938:18;;1683:66:7;9606:356:16;1683:66:7;804:19:8::1;815:7;804:10;:19::i;497:60::-:0;437:10;689:4;712:16;;;:7;:16;;;;;;;;420:53;;;;-1:-1:-1;;;420:53:8;;10169:2:16;420:53:8;;;10151:21:16;10208:2;10188:18;;;10181:30;10247:22;10227:18;;;10220:50;10287:18;;420:53:8;9967:344:16;420:53:8;542:8:::1;:6;:8::i;7233:217:4:-:0;1168:7:10;;-1:-1:-1;;;1168:7:10;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:10;;6619:2:16;1403:38:10;;;6601:21:16;6658:2;6638:18;;;6631:30;-1:-1:-1;;;6677:18:16;;;6670:46;6733:18;;1403:38:10;6417:340:16;1403:38:10;7310:31:4::1;7344:27;7368:2;7344:23;:27::i;:::-;7310:61;;7381:62;7392:8;:17;;;7411:8;:14;;;7427:8;:15;;;7381:10;:62::i;:::-;7300:150;7233:217:::0;:::o;8180:86::-;1702:10:7;1691:7;1551:6;;-1:-1:-1;;;;;1551:6:7;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:7;;1683:66;;;;-1:-1:-1;;;1683:66:7;;9808:2:16;1683:66:7;;;9790:21:16;;;9827:18;;;9820:30;9886:34;9866:18;;;9859:62;9938:18;;1683:66:7;9606:356:16;1683:66:7;8241:10:4::1;:18:::0;;-1:-1:-1;;;;;;8241:18:4::1;-1:-1:-1::0;;;;;8241:18:4;;;::::1;::::0;;;::::1;::::0;;8180:86::o;5658:1569::-;1168:7:10;;5852::4;;-1:-1:-1;;;1168:7:10;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:10;;6619:2:16;1403:38:10;;;6601:21:16;6658:2;6638:18;;;6631:30;-1:-1:-1;;;6677:18:16;;;6670:46;6733:18;;1403:38:10;6417:340:16;1403:38:10;5871:14:4::1;5915:13;5938:4;5898:58;;;;;;;;10574:19:16::0;;;10631:2;10627:15;-1:-1:-1;;10623:53:16;10618:2;10609:12;;10602:75;10707:10;10702:2;10693:12;;10686:32;10743:2;10734:12;;10316:436;5898:58:4::1;;;;;;;;;;;;;5888:69;;;;;;5871:86;;5967:12;-1:-1:-1::0;;;;;5967:23:4::1;;6008:6;6016:8;;5991:34;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6027:5;;6034:8;;6044:7;;5967:85;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6062:32;6097:30;6118:8;;6097:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;6097:20:4::1;::::0;-1:-1:-1;;;6097:30:4:i:1;:::-;6268:16;::::0;;::::1;::::0;6302:13;;6333:14:::1;::::0;;::::1;::::0;6365:19:::1;::::0;;::::1;::::0;6402:18:::1;::::0;::::1;::::0;6438:13:::1;::::0;::::1;::::0;6234:262;;-1:-1:-1;;14895:15:16;;;14891:24;;6234:262:4;;::::1;14879:37:16::0;14950:15;;;14946:24;;14932:12;;;14925:46;14987:12;;;14980:28;;;;15042:15;;;15038:24;;15024:12;;;15017:46;-1:-1:-1;;15101:3:16;15097:16;;;;15093:89;15079:12;;;15072:111;15199:13;;;15192:29;;;;6477:4:4::1;15256:15:16::0;;15252:24;;;15237:13;;;15230:47;6234:262:4;;;;;;;;;15293:13:16;;;;6234:262:4;;6152:354;;;;::::1;::::0;-1:-1:-1;6524:13:4;;;:7:::1;:13:::0;;;;;;6268:16;;-1:-1:-1;6152:354:4;6524:13:::1;;:22;6516:48;;;::::0;-1:-1:-1;;;6516:48:4;;15519:2:16;6516:48:4::1;::::0;::::1;15501:21:16::0;15558:2;15538:18;;;15531:30;-1:-1:-1;;;15577:18:16;;;15570:43;15630:18;;6516:48:4::1;15317:337:16::0;6516:48:4::1;6574:13;::::0;;;:7:::1;:13;::::0;;;;;;:20;;-1:-1:-1;;6574:20:4::1;6590:4;6574:20;::::0;;6618:13;;6633:14;;::::1;::::0;6604:44:::1;::::0;6618:13;6604::::1;:44::i;:::-;6699:13:::0;;-1:-1:-1;;;;;6683:30:4::1;6658:22;6683:30:::0;;;:15:::1;:30;::::0;;;;;6727:18;;;;;:53:::1;;;6766:14;6749:7;:14;;;:31;6727:53;6723:248;;;6796:74;6816:4;6822:7;:16;;;6840:7;:13;;;6855:7;:14;;;6796:19;:74::i;:::-;6723:248;;;6901:59;6912:7;:16;;;6930:7;:13;;;6945:7;:14;;;6901:10;:59::i;:::-;7026:16;::::0;;::::1;::::0;7056:13;;7083:14:::1;::::0;;::::1;::::0;7111:18:::1;::::0;;::::1;::::0;7143:13:::1;::::0;;::::1;::::0;7170:19:::1;::::0;;::::1;::::0;6985:214;;15972:25:16;;;-1:-1:-1;;;;;16094:15:16;;;16074:18;;;16067:43;;;;16146:15;;;16126:18;;;16119:43;;;;16178:18;;;16171:34;;;;16254:18;16242:31;16221:19;;;16214:60;16290:19;;16283:35;16355:15;16349:3;16334:19;;16327:44;6985:214:4::1;::::0;15959:3:16;15944:19;6985:214:4::1;;;;;;;-1:-1:-1::0;7216:4:4;5658:1569;-1:-1:-1;;;;;;;;;;;5658:1569:4:o;769:79:6:-;814:27;830:10;814:15;:27::i;662:101::-;1702:10:7;1691:7;1551:6;;-1:-1:-1;;;;;1551:6:7;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:7;;1683:66;;;;-1:-1:-1;;;1683:66:7;;9808:2:16;1683:66:7;;;9790:21:16;;;9827:18;;;9820:30;9886:34;9866:18;;;9859:62;9938:18;;1683:66:7;9606:356:16;1683:66:7;731:25:6::1;747:8;731:15;:25::i;1916:189:7:-:0;1702:10;1691:7;1551:6;;-1:-1:-1;;;;;1551:6:7;;1479:85;1691:7;-1:-1:-1;;;;;1691:21:7;;1683:66;;;;-1:-1:-1;;;1683:66:7;;9808:2:16;1683:66:7;;;9790:21:16;;;9827:18;;;9820:30;9886:34;9866:18;;;9859:62;9938:18;;1683:66:7;9606:356:16;1683:66:7;-1:-1:-1;;;;;2004:22:7;::::1;1996:73;;;::::0;-1:-1:-1;;;1996:73:7;;16584:2:16;1996:73:7::1;::::0;::::1;16566:21:16::0;16623:2;16603:18;;;16596:30;16662:34;16642:18;;;16635:62;16733:8;16713:18;;;16706:36;16759:19;;1996:73:7::1;16382:402:16::0;1996:73:7::1;2079:19;2089:8;2079:9;:19::i;4333:844:4:-:0;-1:-1:-1;;;;;4542:18:4;;4505:7;4542:18;;;:10;:18;;;;;;4532:28;;4524:57;;;;-1:-1:-1;;;4524:57:4;;16991:2:16;4524:57:4;;;16973:21:16;17030:2;17010:18;;;17003:30;17069:18;17049;;;17042:46;17105:18;;4524:57:4;16789:340:16;4524:57:4;-1:-1:-1;;;;;4599:18:4;;;;;;:10;:18;;;;;;:23;;:56;;-1:-1:-1;;;;;;4637:18:4;;;;;;:10;:18;;;;;;4626:29;;;4599:56;4591:85;;;;-1:-1:-1;;;4591:85:4;;17336:2:16;4591:85:4;;;17318:21:16;17375:2;17355:18;;;17348:30;17414:18;17394;;;17387:46;17450:18;;4591:85:4;17134:340:16;4591:85:4;4787:261;;-1:-1:-1;;4821:10:4;17868:2:16;17864:15;;;17860:24;;4787:261:4;;;17848:37:16;17919:15;;;17915:24;;17901:12;;;17894:46;17956:12;;;17949:28;;;-1:-1:-1;;18100:3:16;18096:16;;;18092:25;;18078:12;;;18071:47;18152:15;;;18148:24;;18134:12;;;18127:46;18208:16;;;18204:25;;18189:13;;;18182:48;4989:13:4;18265:16:16;;18261:25;18246:13;;;18239:48;5029:4:4;18322:15:16;;18318:24;18303:13;;;18296:47;4686:13:4;;18359::16;;4787:261:4;;;-1:-1:-1;;4787:261:4;;;;;;;;;4702:356;;4787:261;4702:356;;;;5076:14;;;;:7;:14;;;;;;4702:356;;-1:-1:-1;5076:14:4;;:23;5068:49;;;;-1:-1:-1;;;5068:49:4;;15519:2:16;5068:49:4;;;15501:21:16;15558:2;15538:18;;;15531:30;-1:-1:-1;;;15577:18:16;;;15570:43;15630:18;;5068:49:4;15317:337:16;5068:49:4;5127:14;;;;:7;:14;;;;;:21;;-1:-1:-1;;5127:21:4;5144:4;5127:21;;;5135:5;-1:-1:-1;4333:844:4;;;;;;;:::o;912:241:13:-;1077:68;;-1:-1:-1;;;;;18664:15:16;;;1077:68:13;;;18646:34:16;18716:15;;18696:18;;;18689:43;18748:18;;;18741:34;;;1050:96:13;;1070:5;;-1:-1:-1;;;1100:27:13;18558:18:16;;1077:68:13;;;;-1:-1:-1;;1077:68:13;;;;;;;;;;;;;;;;;;;;;;;;;;;1050:19;:96::i;:::-;912:241;;;;:::o;854:200:6:-;-1:-1:-1;;;;;529:19:6;;506:4;529:19;;;:9;:19;;;;;;;;920:21;912:61;;;;-1:-1:-1;;;912:61:6;;18988:2:16;912:61:6;;;18970:21:16;19027:2;19007:18;;;19000:30;19066:29;19046:18;;;19039:57;19113:18;;912:61:6;18786:351:16;912:61:6;-1:-1:-1;;;;;983:19:6;;;;;;:9;:19;;;;;;;;;:26;;-1:-1:-1;;983:26:6;1005:4;983:26;;;1024:23;;3687:74:16;;;1024:23:6;;3660:18:16;1024:23:6;3541:226:16;2110:117:10;1168:7;;-1:-1:-1;;;1168:7:10;;;;1669:41;;;;-1:-1:-1;;;1669:41:10;;19344:2:16;1669:41:10;;;19326:21:16;19383:2;19363:18;;;19356:30;19422:22;19402:18;;;19395:50;19462:18;;1669:41:10;19142:344:16;1669:41:10;2168:7:::1;:15:::0;;-1:-1:-1;;;;2168:15:10::1;::::0;;2198:22:::1;719:10:15::0;2207:12:10::1;2198:22;::::0;-1:-1:-1;;;;;3705:55:16;;;3687:74;;3675:2;3660:18;2198:22:10::1;;;;;;;2110:117::o:0;1210:187:8:-;-1:-1:-1;;;;;712:16:8;;689:4;712:16;;;:7;:16;;;;;;;;1268:51;;;;-1:-1:-1;;;1268:51:8;;19693:2:16;1268:51:8;;;19675:21:16;19732:2;19712:18;;;19705:30;19771:23;19751:18;;;19744:51;19812:18;;1268:51:8;19491:345:16;1268:51:8;-1:-1:-1;;;;;1329:16:8;;1348:5;1329:16;;;:7;:16;;;;;;;;;:24;;-1:-1:-1;;1329:24:8;;;1368:22;;3687:74:16;;;1368:22:8;;3660:18:16;1368:22:8;3541:226:16;1018:186:8;-1:-1:-1;;;;;712:16:8;;689:4;712:16;;;:7;:16;;;;;;;;1081:18;1073:56;;;;-1:-1:-1;;;1073:56:8;;20043:2:16;1073:56:8;;;20025:21:16;20082:2;20062:18;;;20055:30;20121:27;20101:18;;;20094:55;20166:18;;1073:56:8;19841:349:16;1073:56:8;-1:-1:-1;;;;;1139:16:8;;;;;;:7;:16;;;;;;;;;:23;;-1:-1:-1;;1139:23:8;1158:4;1139:23;;;1177:20;;3687:74:16;;;1177:20:8;;3660:18:16;1177:20:8;3541:226:16;1863:115:10;1168:7;;-1:-1:-1;;;1168:7:10;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:10;;6619:2:16;1403:38:10;;;6601:21:16;6658:2;6638:18;;;6631:30;-1:-1:-1;;;6677:18:16;;;6670:46;6733:18;;1403:38:10;6417:340:16;1403:38:10;1932:4:::1;1922:14:::0;;-1:-1:-1;;;;1922:14:10::1;-1:-1:-1::0;;;1922:14:10::1;::::0;;1951:20:::1;1958:12;719:10:15::0;;640:96;1756:487:5;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1853:31:5;1887:20;;;:16;:20;;;;;;;;;1853:54;;;;;;;;;-1:-1:-1;;;;;1853:54:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917:61;;;;-1:-1:-1;;;1917:61:5;;20397:2:16;1917:61:5;;;20379:21:16;20436:2;20416:18;;;20409:30;20475:28;20455:18;;;20448:56;20521:18;;1917:61:5;20195:350:16;1917:61:5;2035:11;;2014:8;:18;;;:32;;;;:::i;:::-;1996:15;:50;1988:92;;;;-1:-1:-1;;;1988:92:5;;20882:2:16;1988:92:5;;;20864:21:16;20921:2;20901:18;;;20894:30;20960:31;20940:18;;;20933:59;21009:18;;1988:92:5;20680:353:16;1988:92:5;2097:20;;;;:16;:20;;;;;;;;2090:27;;-1:-1:-1;;;;;;2090:27:5;;;;;;;;;;;;;;;;;;;;;;;;;;;2160:17;;2179:14;;;;2195:15;;;;2132:79;;;;;;2114:2;;2160:17;;2179:14;;2195:15;21269:25:16;;;-1:-1:-1;;;;;21391:15:16;;;21386:2;21371:18;;21364:43;21443:15;;21438:2;21423:18;;21416:43;21490:2;21475:18;;21468:34;21256:3;21241:19;;21038:470;2132:79:5;;;;;;;;2228:8;1756:487;-1:-1:-1;;1756:487:5:o;8272:481:4:-;8406:10;;-1:-1:-1;;;;;8406:10:4;;;8396:20;;;;8392:355;;8495:10;;8489:35;;-1:-1:-1;;;8489:35:4;;;;;941:25:16;;;-1:-1:-1;;;;;8495:10:4;;;;8489:26;;914:18:16;;8489:35:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8539:9;8554;-1:-1:-1;;;;;8554:14:4;8576:7;8590:5;8554:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8538:62;;;8622:4;8614:44;;;;-1:-1:-1;;;8614:44:4;;21925:2:16;8614:44:4;;;21907:21:16;21964:2;21944:18;;;21937:30;22003:29;21983:18;;;21976:57;22050:18;;8614:44:4;21723:351:16;8392:355:4;8689:47;-1:-1:-1;;;;;8689:27:4;;8717:9;8728:7;8689:27;:47::i;:::-;8272:481;;;:::o;1798:987:3:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;567:11:2;;;-1:-1:-1;;;;1987:792:3;742:5:2;;;;:12;732:7;;:22;1987:792:3;;;2037:12;:3;:10;:12::i;:::-;2023:26;;-1:-1:-1;2023:26:3;-1:-1:-1;2141:3:3;2148:1;2141:8;2137:603;;2179:27;2191:14;:3;:12;:14::i;:::-;2179:11;:27::i;:::-;-1:-1:-1;;;;;2169:37:3;;;1987:792;;2137:603;2231:3;2238:1;2231:8;2227:513;;2272:27;2284:14;:3;:12;:14::i;2272:27::-;-1:-1:-1;;;;;2259:40:3;:10;;;:40;1987:792;;2227:513;2324:3;2331:1;2324:8;2320:420;;2363:27;2375:14;:3;:12;:14::i;:::-;2363:11;:27::i;:::-;2352:8;;;:38;1987:792;;2320:420;2415:3;2422:1;2415:8;2411:329;;2459:27;2471:14;:3;:12;:14::i;2459:27::-;-1:-1:-1;;;;;2443:43:3;:13;;;:43;1987:792;;2411:329;2511:3;2518:1;2511:8;2507:233;;2561:15;:3;:13;:15::i;:::-;2539:38;;:12;;;:38;1987:792;;2507:233;2602:3;2609:1;2602:8;2598:142;;2640:27;2652:14;:3;:12;:14::i;:::-;2640:11;:27::i;:::-;2630:7;;;:37;1987:792;;2598:142;2706:19;:3;2720:4;2706:13;:19::i;:::-;1987:792;;;1879:906;;;1798:987;;;:::o;1016:685:9:-;1095:11;;1110:1;1095:16;1091:53;;1016:685;;:::o;1091:53::-;-1:-1:-1;;;;;1167:23:9;;1153:11;1167:23;;;:15;:23;;;;;;;1204:8;;;1200:45;;1228:7;1016:685;;:::o;1200:45::-;-1:-1:-1;;;;;1271:20:9;;1254:14;1271:20;;;:12;:20;;;;;;1399:11;;1271:20;;1321:15;;1372:23;1399:11;1321:15;1372:23;:::i;:::-;1371:39;;;;:::i;:::-;-1:-1:-1;;;;;1424:24:9;;;;;;:16;:24;;;;;;1346:64;;-1:-1:-1;1424:41:9;-1:-1:-1;1420:136:9;;;1490:7;1481:16;;1420:136;;;1528:17;1538:7;1528:17;;:::i;:::-;;;1420:136;1583:3;1573:6;:13;;1565:44;;;;-1:-1:-1;;;1565:44:9;;22676:2:16;1565:44:9;;;22658:21:16;22715:2;22695:18;;;22688:30;22754:20;22734:18;;;22727:48;22792:18;;1565:44:9;22474:342:16;1565:44:9;-1:-1:-1;;;;;;1619:20:9;;;;;;;:12;:20;;;;;;;;:29;;;;1658:16;:24;;;:36;;;;-1:-1:-1;;1016:685:9:o;1240:458:5:-;1395:20;;;;:16;:20;;;;;:30;;;:35;1387:79;;;;-1:-1:-1;;;1387:79:5;;23023:2:16;1387:79:5;;;23005:21:16;23062:2;23042:18;;;23035:30;23101:33;23081:18;;;23074:61;23152:18;;1387:79:5;22821:355:16;1387:79:5;1499:153;;;;;;;;-1:-1:-1;;;;;1499:153:5;;;;;;;;;;;;;;;;;;;;;1626:15;1499:153;;;;;;-1:-1:-1;1476:20:5;;;:16;:20;;;;;;;:176;;;;;;;-1:-1:-1;;;;;;1476:176:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1667:24;;;;;1493:2;941:25:16;;929:2;914:18;;795:177;1667:24:5;;;;;;;;1240:458;;;;:::o;1060:201:6:-;-1:-1:-1;;;;;529:19:6;;506:4;529:19;;;:9;:19;;;;;;;;1121:56;;;;-1:-1:-1;;;1121:56:6;;23383:2:16;1121:56:6;;;23365:21:16;23422:2;23402:18;;;23395:30;23461:25;23441:18;;;23434:53;23504:18;;1121:56:6;23181:347:16;1121:56:6;-1:-1:-1;;;;;1187:19:6;;1209:5;1187:19;;;:9;:19;;;;;;;;;:27;;-1:-1:-1;;1187:27:6;;;1229:25;;3687:74:16;;;1229:25:6;;3660:18:16;1229:25:6;3541:226:16;2111:169:7;2185:6;;;-1:-1:-1;;;;;2201:17:7;;;-1:-1:-1;;;;;;2201:17:7;;;;;;;2233:40;;2185:6;;;2201:17;2185:6;;2233:40;;2166:16;;2233:40;2156:124;2111:169;:::o;3207:706:13:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:13;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:13;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:13;;24017:2:16;3811:85:13;;;23999:21:16;24056:2;24036:18;;;24029:30;24095:34;24075:18;;;24068:62;24166:12;24146:18;;;24139:40;24196:19;;3811:85:13;23815:406:16;701:205:13;840:58;;-1:-1:-1;;;;;9224:55:16;;840:58:13;;;9206:74:16;9296:18;;;9289:34;;;813:86:13;;833:5;;-1:-1:-1;;;863:23:13;9179:18:16;;840:58:13;9032:297:16;815:190:2;873:11;886:17;915:9;927:14;937:3;927:9;:14::i;:::-;915:26;-1:-1:-1;957:5:2;961:1;915:26;957:5;:::i;:::-;951:11;;992:1;996;992:5;983:15;;;;;;;;:::i;:::-;972:26;;905:100;815:190;;;:::o;2736:679::-;2796:14;2822:11;2836:14;2846:3;2836:9;:14::i;:::-;2822:28;;2860:11;2884:3;2874;:7;;;:13;;;;:::i;:::-;2860:27;;2912:3;:5;;;:12;2905:3;:19;;2897:28;;;;;;2967:3;2957:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2957:14:2;-1:-1:-1;3001:5:2;;;;;3101:7;;2953:18;;-1:-1:-1;3001:5:2;3151:10;;;;3187:29;;;;2981:17;3235:151;3259:3;3255:1;:7;3235:151;;;3343:17;;;3337:24;3321:14;;;3314:48;3264:7;3269:2;3358:1;3264:7;:::i;:::-;;;3235:151;;;-1:-1:-1;;;3395:13:2;;-1:-1:-1;2736:679:2;;-1:-1:-1;2736:679:2:o;5122:107::-;5179:9;5204:18;5220:1;5204:15;:18::i;:::-;5200:22;5122:107;-1:-1:-1;;5122:107:2:o;4797:319::-;4854:9;4895:2;4883:1;:8;:14;;4875:23;;;;;;4999:2;4996:1;4992:10;4986:17;4981:22;;5067:1;:8;5062:2;:13;;;;:::i;:::-;5057:19;;:1;:19;:::i;:::-;5051:26;;4797:319;-1:-1:-1;4797:319:2:o;1776:902::-;1960:5;;;;;2020:7;;2119:19;;;;;2113:26;1837:9;;;;2297:326;2321:2;2317:1;:6;2297:326;;;2376:12;;;;-1:-1:-1;2499:5:2;2381:1;2503;2499:5;:::i;:::-;2485:1;2489:4;2485:8;2484:21;;2479:26;;;;2523:1;2527:4;2523:8;2535:1;2523:13;2519:94;;2567:5;:1;2571;2567:5;:::i;:::-;2556:16;;:3;;:16;;;;;:::i;:::-;;;-1:-1:-1;1776:902:2;;;-1:-1:-1;;;;;1776:902:2:o;2519:94::-;2325:3;;;;:::i;:::-;;;;2297:326;;5511:172;5568:9;5597:1;:8;5609:2;5597:14;5589:23;;;;;;-1:-1:-1;5663:2:2;5656:10;5650:17;;5511:172::o;4236:428::-;4325:15;4317:4;:23;;;;;;;;:::i;:::-;;4313:321;;4356:14;4366:3;4356:9;:14::i;4313:321::-;4399:20;4391:4;:28;;;;;;;;:::i;:::-;;4387:247;;4435:11;4449:14;4459:3;4449:9;:14::i;:::-;4435:28;;4488:3;4477;:7;;:14;;;;;;;:::i;:::-;;;-1:-1:-1;4553:5:2;;;;:12;4542:7;;:23;;4534:32;;;;;3861:223:14;3994:12;4025:52;4047:6;4055:4;4061:1;4064:12;4025:21;:52::i;:::-;4018:59;;3861:223;;;;;;:::o;5235:270:2:-;5299:17;5336:1;:8;5348:2;5336:14;5328:23;;;;;;-1:-1:-1;5455:2:2;5448:10;5442:17;5461:27;5438:51;;;5235:270::o;4948:499:14:-;5113:12;5170:5;5145:21;:30;;5137:81;;;;-1:-1:-1;;;5137:81:14;;24825:2:16;5137:81:14;;;24807:21:16;24864:2;24844:18;;;24837:30;24903:34;24883:18;;;24876:62;24974:8;24954:18;;;24947:36;25000:19;;5137:81:14;24623:402:16;5137:81:14;-1:-1:-1;;;;;1465:19:14;;;5228:60;;;;-1:-1:-1;;;5228:60:14;;25232:2:16;5228:60:14;;;25214:21:16;25271:2;25251:18;;;25244:30;25310:31;25290:18;;;25283:59;25359:18;;5228:60:14;25030:353:16;5228:60:14;5300:12;5314:23;5341:6;-1:-1:-1;;;;;5341:11:14;5360:5;5367:4;5341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:73;;;;5389:51;5406:7;5415:10;5427:12;5389:16;:51::i;:::-;5382:58;4948:499;-1:-1:-1;;;;;;;4948:499:14:o;7561:692::-;7707:12;7735:7;7731:516;;;-1:-1:-1;7765:10:14;7758:17;;7731:516;7876:17;;:21;7872:365;;8070:10;8064:17;8130:15;8117:10;8113:2;8109:19;8102:44;7872:365;8209:12;8202:20;;-1:-1:-1;;;8202:20:14;;;;;;;;:::i;14:171:16:-;81:20;;141:18;130:30;;120:41;;110:69;;175:1;172;165:12;110:69;14:171;;;:::o;190:196::-;258:20;;-1:-1:-1;;;;;307:54:16;;297:65;;287:93;;376:1;373;366:12;391:399;475:6;483;491;499;552:3;540:9;531:7;527:23;523:33;520:53;;;569:1;566;559:12;520:53;605:9;592:23;582:33;;634:37;667:2;656:9;652:18;634:37;:::i;:::-;624:47;;690:38;724:2;713:9;709:18;690:38;:::i;:::-;680:48;;747:37;780:2;769:9;765:18;747:37;:::i;:::-;737:47;;391:399;;;;;;;:::o;977:180::-;1036:6;1089:2;1077:9;1068:7;1064:23;1060:32;1057:52;;;1105:1;1102;1095:12;1057:52;-1:-1:-1;1128:23:16;;977:180;-1:-1:-1;977:180:16:o;1354:367::-;1417:8;1427:6;1481:3;1474:4;1466:6;1462:17;1458:27;1448:55;;1499:1;1496;1489:12;1448:55;-1:-1:-1;1522:20:16;;1565:18;1554:30;;1551:50;;;1597:1;1594;1587:12;1551:50;1634:4;1626:6;1622:17;1610:29;;1694:3;1687:4;1677:6;1674:1;1670:14;1662:6;1658:27;1654:38;1651:47;1648:67;;;1711:1;1708;1701:12;1648:67;1354:367;;;;;:::o;1726:773::-;1848:6;1856;1864;1872;1925:2;1913:9;1904:7;1900:23;1896:32;1893:52;;;1941:1;1938;1931:12;1893:52;1981:9;1968:23;2010:18;2051:2;2043:6;2040:14;2037:34;;;2067:1;2064;2057:12;2037:34;2106:70;2168:7;2159:6;2148:9;2144:22;2106:70;:::i;:::-;2195:8;;-1:-1:-1;2080:96:16;-1:-1:-1;2283:2:16;2268:18;;2255:32;;-1:-1:-1;2299:16:16;;;2296:36;;;2328:1;2325;2318:12;2296:36;;2367:72;2431:7;2420:8;2409:9;2405:24;2367:72;:::i;:::-;1726:773;;;;-1:-1:-1;2458:8:16;-1:-1:-1;;;;1726:773:16:o;2504:474::-;2597:6;2605;2613;2621;2629;2682:3;2670:9;2661:7;2657:23;2653:33;2650:53;;;2699:1;2696;2689:12;2650:53;2722:29;2741:9;2722:29;:::i;:::-;2712:39;;2798:2;2787:9;2783:18;2770:32;2760:42;;2821:37;2854:2;2843:9;2839:18;2821:37;:::i;:::-;2811:47;;2877:38;2911:2;2900:9;2896:18;2877:38;:::i;:::-;2867:48;;2934:38;2967:3;2956:9;2952:19;2934:38;:::i;:::-;2924:48;;2504:474;;;;;;;;:::o;2983:186::-;3042:6;3095:2;3083:9;3074:7;3070:23;3066:32;3063:52;;;3111:1;3108;3101:12;3063:52;3134:29;3153:9;3134:29;:::i;3772:1554::-;3961:6;3969;3977;3985;3993;4001;4009;4017;4070:3;4058:9;4049:7;4045:23;4041:33;4038:53;;;4087:1;4084;4077:12;4038:53;4127:9;4114:23;4156:18;4197:2;4189:6;4186:14;4183:34;;;4213:1;4210;4203:12;4183:34;4251:6;4240:9;4236:22;4226:32;;4296:7;4289:4;4285:2;4281:13;4277:27;4267:55;;4318:1;4315;4308:12;4267:55;4358:2;4345:16;4384:2;4376:6;4373:14;4370:34;;;4400:1;4397;4390:12;4370:34;4447:7;4440:4;4431:6;4427:2;4423:15;4419:26;4416:39;4413:59;;;4468:1;4465;4458:12;4413:59;4499:4;4491:13;;;;-1:-1:-1;4523:6:16;-1:-1:-1;4567:20:16;;;4554:34;;4600:16;;;4597:36;;;4629:1;4626;4619:12;4597:36;4668:72;4732:7;4721:8;4710:9;4706:24;4668:72;:::i;:::-;4759:8;;-1:-1:-1;4642:98:16;-1:-1:-1;4847:2:16;4832:18;;4819:32;;-1:-1:-1;4863:16:16;;;4860:36;;;4892:1;4889;4882:12;4860:36;4931:72;4995:7;4984:8;4973:9;4969:24;4931:72;:::i;:::-;5022:8;;-1:-1:-1;4905:98:16;-1:-1:-1;5110:2:16;5095:18;;5082:32;;-1:-1:-1;5126:16:16;;;5123:36;;;5155:1;5152;5145:12;5123:36;;5194:72;5258:7;5247:8;5236:9;5232:24;5194:72;:::i;:::-;3772:1554;;;;-1:-1:-1;3772:1554:16;;-1:-1:-1;3772:1554:16;;;;;;5285:8;-1:-1:-1;;;3772:1554:16:o;8900:127::-;8961:10;8956:3;8952:20;8949:1;8942:31;8992:4;8989:1;8982:15;9016:4;9013:1;9006:15;9334:127;9395:10;9390:3;9386:20;9383:1;9376:31;9426:4;9423:1;9416:15;9450:4;9447:1;9440:15;9466:135;9505:3;9526:17;;;9523:43;;9546:18;;:::i;:::-;-1:-1:-1;9593:1:16;9582:13;;9466:135::o;10757:345::-;10954:6;10949:3;10942:19;11005:6;10997;10992:2;10987:3;10983:12;10970:42;10924:3;11035:16;;11053:2;11031:25;11065:13;;;11031:25;10757:345;-1:-1:-1;;10757:345:16:o;11107:250::-;11192:1;11202:113;11216:6;11213:1;11210:13;11202:113;;;11292:11;;;11286:18;11273:11;;;11266:39;11238:2;11231:10;11202:113;;;-1:-1:-1;;11349:1:16;11331:16;;11324:27;11107:250::o;11362:270::-;11403:3;11441:5;11435:12;11468:6;11463:3;11456:19;11484:76;11553:6;11546:4;11541:3;11537:14;11530:4;11523:5;11519:16;11484:76;:::i;:::-;11614:2;11593:15;-1:-1:-1;;11589:29:16;11580:39;;;;11621:4;11576:50;;11362:270;-1:-1:-1;;11362:270:16:o;11637:266::-;11725:6;11720:3;11713:19;11777:6;11770:5;11763:4;11758:3;11754:14;11741:43;-1:-1:-1;11829:1:16;11804:16;;;11822:4;11800:27;;;11793:38;;;;11885:2;11864:15;;;-1:-1:-1;;11860:29:16;11851:39;;;11847:50;;11637:266::o;11908:470::-;12008:6;12003:3;11996:19;11978:3;12034:4;12063:2;12058:3;12054:12;12047:19;;12089:5;12112:1;12122:231;12136:6;12133:1;12130:13;12122:231;;;-1:-1:-1;;;;;12201:26:16;12220:6;12201:26;:::i;:::-;12197:75;12185:88;;12293:12;;;;12328:15;;;;12158:1;12151:9;12122:231;;;-1:-1:-1;12369:3:16;;11908:470;-1:-1:-1;;;;;11908:470:16:o;12383:358::-;12483:6;12478:3;12471:19;12453:3;12513:66;12505:6;12502:78;12499:98;;;12593:1;12590;12583:12;12499:98;12629:6;12626:1;12622:14;12681:8;12674:5;12667:4;12662:3;12658:14;12645:45;12710:18;;;;12730:4;12706:29;;12383:358;-1:-1:-1;;;12383:358:16:o;12746:1783::-;13177:3;13166:9;13159:22;13140:4;13204:45;13244:3;13233:9;13229:19;13221:6;13204:45;:::i;:::-;13268:2;13318:9;13310:6;13306:22;13301:2;13290:9;13286:18;13279:50;13349:6;13379;13371;13364:22;13414:2;13406:6;13402:15;13395:22;;13473:2;13463:6;13460:1;13456:14;13448:6;13444:27;13440:36;13499:6;13523:1;13533:710;13547:6;13544:1;13541:13;13533:710;;;13612:19;;;-1:-1:-1;;13608:33:16;13596:46;;13681:20;;13756:14;13752:27;;;-1:-1:-1;;13748:41:16;13724:66;;13714:94;;13804:1;13801;13794:12;13714:94;13834:31;;13939:14;;;;13892:19;13980:18;13969:30;;13966:50;;;14012:1;14009;14002:12;13966:50;14065:6;14049:14;14045:27;14036:7;14032:41;14029:61;;;14086:1;14083;14076:12;14029:61;14113:50;14156:6;14148;14139:7;14113:50;:::i;:::-;14221:12;;;;14103:60;-1:-1:-1;;;14186:15:16;;;;13569:1;13562:9;13533:710;;;13537:3;;14291:9;14283:6;14279:22;14274:2;14263:9;14259:18;14252:50;14325:61;14379:6;14371;14363;14325:61;:::i;:::-;14311:75;;;;;14434:9;14426:6;14422:22;14417:2;14406:9;14402:18;14395:50;14462:61;14516:6;14508;14500;14462:61;:::i;:::-;14454:69;12746:1783;-1:-1:-1;;;;;;;;;;12746:1783:16:o;20550:125::-;20615:9;;;20636:10;;;20633:36;;;20649:18;;:::i;22079:217::-;22119:1;22145;22135:132;;22189:10;22184:3;22180:20;22177:1;22170:31;22224:4;22221:1;22214:15;22252:4;22249:1;22242:15;22135:132;-1:-1:-1;22281:9:16;;22079:217::o;22301:168::-;22374:9;;;22405;;22422:15;;;22416:22;;22402:37;22392:71;;22443:18;;:::i;23533:277::-;23600:6;23653:2;23641:9;23632:7;23628:23;23624:32;23621:52;;;23669:1;23666;23659:12;23621:52;23701:9;23695:16;23754:5;23747:13;23740:21;23733:5;23730:32;23720:60;;23776:1;23773;23766:12;24226:127;24287:10;24282:3;24278:20;24275:1;24268:31;24318:4;24315:1;24308:15;24342:4;24339:1;24332:15;24358:127;24419:10;24414:3;24410:20;24407:1;24400:31;24450:4;24447:1;24440:15;24474:4;24471:1;24464:15;24490:128;24557:9;;;24578:11;;;24575:37;;;24592:18;;:::i;25388:287::-;25517:3;25555:6;25549:13;25571:66;25630:6;25625:3;25618:4;25610:6;25606:17;25571:66;:::i;:::-;25653:16;;;;;25388:287;-1:-1:-1;;25388:287:16:o;25680:219::-;25829:2;25818:9;25811:21;25792:4;25849:44;25889:2;25878:9;25874:18;25866:6;25849:44;:::i
Swarm Source
ipfs://f56ff88c90b2d7e29607379639b54430d34c76d1beaeed1a6e56b271bb9d6b42
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ARBNOVA | 100.00% | $0.051459 | 1,095.852 | $56.39 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.